From 4a748e894da0b2a22559f3102238ee2c876fd4c7 Mon Sep 17 00:00:00 2001 From: jialin Date: Thu, 16 Jan 2025 10:33:18 +0800 Subject: [PATCH] chore: rename copy button less --- src/components/status-tag/{copy.less => copy-btn.less} | 0 src/components/status-tag/index.tsx | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename src/components/status-tag/{copy.less => copy-btn.less} (100%) diff --git a/src/components/status-tag/copy.less b/src/components/status-tag/copy-btn.less similarity index 100% rename from src/components/status-tag/copy.less rename to src/components/status-tag/copy-btn.less diff --git a/src/components/status-tag/index.tsx b/src/components/status-tag/index.tsx index e95e101a..b95b9c7c 100644 --- a/src/components/status-tag/index.tsx +++ b/src/components/status-tag/index.tsx @@ -7,7 +7,7 @@ import React, { useEffect, useMemo, useState } from 'react'; import SimpleBar from 'simplebar-react'; import 'simplebar-react/dist/simplebar.min.css'; import CopyButton from '../copy-button'; -import CopyStyle from './copy.less'; +import CopyStyle from './copy-btn.less'; import './index.less'; const linkReg = /(.*?)<\/a>/g;