mirror of
https://github.com/teableio/teable
synced 2024-11-23 07:51:00 +00:00
chore: import icons Checked
、TeableNew
(#131)
This commit is contained in:
parent
903f70aaaa
commit
13c9ca3a83
18
packages/icons/src/components/Checked.tsx
Normal file
18
packages/icons/src/components/Checked.tsx
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
import * as React from 'react';
|
||||||
|
import type { SVGProps } from 'react';
|
||||||
|
const Checked = (props: SVGProps<SVGSVGElement>) => (
|
||||||
|
<svg
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
width="1em"
|
||||||
|
height="1em"
|
||||||
|
fill="none"
|
||||||
|
viewBox="0 0 16 16"
|
||||||
|
{...props}
|
||||||
|
>
|
||||||
|
<path
|
||||||
|
fill="currentColor"
|
||||||
|
d="M12.667 2H3.333C2.593 2 2 2.6 2 3.333v9.334C2 13.4 2.593 14 3.333 14h9.334c.74 0 1.333-.6 1.333-1.333V3.333C14 2.6 13.407 2 12.667 2Zm-6 9.333L3.333 8l.94-.94 2.394 2.387 5.06-5.06.94.946-6 6Z"
|
||||||
|
/>
|
||||||
|
</svg>
|
||||||
|
);
|
||||||
|
export default Checked;
|
24
packages/icons/src/components/TeableNew.tsx
Normal file
24
packages/icons/src/components/TeableNew.tsx
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
import * as React from 'react';
|
||||||
|
import type { SVGProps } from 'react';
|
||||||
|
const TeableNew = (props: SVGProps<SVGSVGElement>) => (
|
||||||
|
<svg
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
width="1em"
|
||||||
|
height="1em"
|
||||||
|
fill="none"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
{...props}
|
||||||
|
>
|
||||||
|
<path
|
||||||
|
fill="currentColor"
|
||||||
|
fillRule="evenodd"
|
||||||
|
d="M18.15 22.2h-9.3s-1.05 0-2.25-.9-4.8-4.35-4.8-6.6V6.45C1.8 4.8 3.9 1.8 6.6 1.8H15c1.2 0 2.25.6 3.15 1.35.9.75 4.2 3.75 4.2 5.4v9.6c0 2.25-1.95 4.05-4.2 4.05Zm0-15.75h-9.3c-.75 0-2.25 1.05-2.25 2.1v9.6c0 .9 1.5 2.25 2.25 2.25h9.3c.75 0 2.25-1.35 2.25-2.25v-9.6c0-.9-1.35-2.1-2.25-2.1Z"
|
||||||
|
clipRule="evenodd"
|
||||||
|
/>
|
||||||
|
<path
|
||||||
|
fill="currentColor"
|
||||||
|
d="M11.55 15.9V9.3c0-.45 1.65 0 1.65 0s.75.15.75.45v1.5h1.8c.45 0 .75 1.8 0 1.8h-1.8v2.85h1.8c.6 0 .3 1.2 0 1.65-.3.45-1.8.3-1.8.3s-2.4 0-2.4-1.95Z"
|
||||||
|
/>
|
||||||
|
</svg>
|
||||||
|
);
|
||||||
|
export default TeableNew;
|
@ -6,6 +6,7 @@ export { default as Calendar } from './components/Calendar';
|
|||||||
export { default as Check } from './components/Check';
|
export { default as Check } from './components/Check';
|
||||||
export { default as CheckCircle2 } from './components/CheckCircle2';
|
export { default as CheckCircle2 } from './components/CheckCircle2';
|
||||||
export { default as CheckSquare } from './components/CheckSquare';
|
export { default as CheckSquare } from './components/CheckSquare';
|
||||||
|
export { default as Checked } from './components/Checked';
|
||||||
export { default as ChevronsLeft } from './components/ChevronsLeft';
|
export { default as ChevronsLeft } from './components/ChevronsLeft';
|
||||||
export { default as ChevronsRight } from './components/ChevronsRight';
|
export { default as ChevronsRight } from './components/ChevronsRight';
|
||||||
export { default as ChevronsUpDown } from './components/ChevronsUpDown';
|
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 StretchHorizontal } from './components/StretchHorizontal';
|
||||||
export { default as Table2 } from './components/Table2';
|
export { default as Table2 } from './components/Table2';
|
||||||
export { default as Teable } from './components/Teable';
|
export { default as Teable } from './components/Teable';
|
||||||
|
export { default as TeableNew } from './components/TeableNew';
|
||||||
export { default as Trash } from './components/Trash';
|
export { default as Trash } from './components/Trash';
|
||||||
export { default as Trash2 } from './components/Trash2';
|
export { default as Trash2 } from './components/Trash2';
|
||||||
export { default as UserPlus } from './components/UserPlus';
|
export { default as UserPlus } from './components/UserPlus';
|
||||||
|
Loading…
Reference in New Issue
Block a user