From 13c9ca3a835b089389e9fbcbc567443a4919d73f Mon Sep 17 00:00:00 2001 From: caoxing Date: Thu, 10 Aug 2023 19:09:32 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20import=20icons=20`Checked`=20=E3=80=81?= =?UTF-8?q?`TeableNew`=20(#131)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/icons/src/components/Checked.tsx | 18 ++++++++++++++++ packages/icons/src/components/TeableNew.tsx | 24 +++++++++++++++++++++ packages/icons/src/index.ts | 2 ++ 3 files changed, 44 insertions(+) create mode 100644 packages/icons/src/components/Checked.tsx create mode 100644 packages/icons/src/components/TeableNew.tsx diff --git a/packages/icons/src/components/Checked.tsx b/packages/icons/src/components/Checked.tsx new file mode 100644 index 000000000..da0bd12a5 --- /dev/null +++ b/packages/icons/src/components/Checked.tsx @@ -0,0 +1,18 @@ +import * as React from 'react'; +import type { SVGProps } from 'react'; +const Checked = (props: SVGProps) => ( + + + +); +export default Checked; diff --git a/packages/icons/src/components/TeableNew.tsx b/packages/icons/src/components/TeableNew.tsx new file mode 100644 index 000000000..96f978e70 --- /dev/null +++ b/packages/icons/src/components/TeableNew.tsx @@ -0,0 +1,24 @@ +import * as React from 'react'; +import type { SVGProps } from 'react'; +const TeableNew = (props: SVGProps) => ( + + + + +); +export default TeableNew; diff --git a/packages/icons/src/index.ts b/packages/icons/src/index.ts index 79d6fe879..348a114fa 100644 --- a/packages/icons/src/index.ts +++ b/packages/icons/src/index.ts @@ -6,6 +6,7 @@ export { default as Calendar } from './components/Calendar'; export { default as Check } from './components/Check'; export { default as CheckCircle2 } from './components/CheckCircle2'; export { default as CheckSquare } from './components/CheckSquare'; +export { default as Checked } from './components/Checked'; export { default as ChevronsLeft } from './components/ChevronsLeft'; export { default as ChevronsRight } from './components/ChevronsRight'; export { default as ChevronsUpDown } from './components/ChevronsUpDown'; @@ -46,6 +47,7 @@ export { default as Square } from './components/Square'; export { default as StretchHorizontal } from './components/StretchHorizontal'; export { default as Table2 } from './components/Table2'; export { default as Teable } from './components/Teable'; +export { default as TeableNew } from './components/TeableNew'; export { default as Trash } from './components/Trash'; export { default as Trash2 } from './components/Trash2'; export { default as UserPlus } from './components/UserPlus';