Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add automation mixInput form icon #621

Merged
merged 1 commit into from
May 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions packages/icons/src/components/Array.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import * as React from 'react';
import type { SVGProps } from 'react';
const Array = (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"
d="M8.949 22.348v-1.704H6.765V3.41h2.184V1.707H4.82v20.64zm10.008 0V1.707h-4.128V3.41h2.184v17.232h-2.184v1.704z"
/>
</svg>
);
export default Array;
25 changes: 25 additions & 0 deletions packages/icons/src/components/Boolean.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import * as React from 'react';
import type { SVGProps } from 'react';
const Boolean = (props: SVGProps<SVGSVGElement>) => (
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
fill="none"
viewBox="0 0 24 24"
{...props}
>
<g clipPath="url(#prefix__a)">
<path
fill="currentColor"
d="M16 4a8 8 0 0 1 0 16H8A8 8 0 0 1 8 4zm0 2H8a6 6 0 0 0-.225 11.996L8 18h8a6 6 0 0 0 .225-11.996zm0 1a5 5 0 1 1 0 10 5 5 0 0 1 0-10"
/>
</g>
<defs>
<clipPath id="prefix__a">
<path fill="#fff" d="M0 0h24v24H0z" />
</clipPath>
</defs>
</svg>
);
export default Boolean;
18 changes: 18 additions & 0 deletions packages/icons/src/components/Object.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import * as React from 'react';
import type { SVGProps } from 'react';
const Object = (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"
d="M9.492 21.492v-1.664h-.656q-.563 0-.938-.398-.375-.399-.375-1.102v-4.196q0-1.335-.656-1.992a1.6 1.6 0 0 0-.75-.422l.117-.047q.423-.187.633-.375.656-.68.656-1.992V5.108q0-.703.375-1.102.375-.398.938-.398h.656V1.944h-.96q-.586 0-1.126.21-.54.211-.925.598-.387.387-.586.938-.2.55-.2 1.324v4.36q0 .704-.374 1.113a1.22 1.22 0 0 1-.938.41h-.656v1.642h.656q.563 0 .938.41t.375 1.113v4.36q0 .772.2 1.324.198.55.585.938.386.386.925.597.54.212 1.125.211zm11.297-8.953V10.9h-.633a1.18 1.18 0 0 1-.925-.411q-.363-.411-.363-1.113v-4.36q0-.773-.235-1.36a2.4 2.4 0 0 0-.574-.902 2.7 2.7 0 0 0-.938-.598 3.1 3.1 0 0 0-1.113-.21h-.96v1.664h.632q.585 0 .961.398.375.399.375 1.102v4.195q0 1.336.633 1.992.258.259.773.423l-.117.047q-.445.188-.656.375-.633.656-.633 1.992v4.195q0 .705-.375 1.102t-.96.398h-.634v1.665h.961q.563 0 1.113-.211.55-.21.938-.598.387-.387.574-.902.235-.585.235-1.36v-4.36q0-.703.363-1.112t.925-.41z"
/>
</svg>
);
export default Object;
3 changes: 3 additions & 0 deletions packages/icons/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ export { default as A } from './components/A';
export { default as AlertCircle } from './components/AlertCircle';
export { default as AlertTriangle } from './components/AlertTriangle';
export { default as Apple } from './components/Apple';
export { default as Array } from './components/Array';
export { default as ArrowDown } from './components/ArrowDown';
export { default as ArrowLeft } from './components/ArrowLeft';
export { default as ArrowRight } from './components/ArrowRight';
Expand All @@ -10,6 +11,7 @@ export { default as ArrowUpDown } from './components/ArrowUpDown';
export { default as ArrowUpRight } from './components/ArrowUpRight';
export { default as BarChart2 } from './components/BarChart2';
export { default as Bell } from './components/Bell';
export { default as Boolean } from './components/Boolean';
export { default as Calendar } from './components/Calendar';
export { default as Check } from './components/Check';
export { default as CheckCircle2 } from './components/CheckCircle2';
Expand Down Expand Up @@ -90,6 +92,7 @@ export { default as Minimize2 } from './components/Minimize2';
export { default as Moon } from './components/Moon';
export { default as MoreHorizontal } from './components/MoreHorizontal';
export { default as Network } from './components/Network';
export { default as Object } from './components/Object';
export { default as PackageCheck } from './components/PackageCheck';
export { default as PaintBucket } from './components/PaintBucket';
export { default as Pencil } from './components/Pencil';
Expand Down