@wallarm-org/design-system 0.79.0 → 0.80.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (65) hide show
  1. package/dist/components/Button/Button.d.ts +1 -1
  2. package/dist/components/Code/Code.d.ts +1 -1
  3. package/dist/components/Heading/Heading.d.ts +1 -1
  4. package/dist/components/Link/classes.d.ts +1 -1
  5. package/dist/components/Text/Text.d.ts +1 -1
  6. package/dist/components/ToggleButton/ToggleButton.d.ts +1 -1
  7. package/dist/icons/AudioWaveform.d.ts +3 -0
  8. package/dist/icons/AudioWaveform.js +15 -0
  9. package/dist/icons/BellCog.d.ts +3 -0
  10. package/dist/icons/BellCog.js +15 -0
  11. package/dist/icons/Brain.d.ts +3 -0
  12. package/dist/icons/Brain.js +15 -0
  13. package/dist/icons/Collapse.d.ts +3 -0
  14. package/dist/icons/Collapse.js +15 -0
  15. package/dist/icons/Dot.js +3 -3
  16. package/dist/icons/Duplicate.d.ts +3 -0
  17. package/dist/icons/Duplicate.js +15 -0
  18. package/dist/icons/Expand.d.ts +3 -0
  19. package/dist/icons/Expand.js +15 -0
  20. package/dist/icons/FastForward.d.ts +3 -0
  21. package/dist/icons/FastForward.js +15 -0
  22. package/dist/icons/FilePlus.d.ts +3 -0
  23. package/dist/icons/FilePlus.js +15 -0
  24. package/dist/icons/GitBranch.d.ts +3 -0
  25. package/dist/icons/GitBranch.js +15 -0
  26. package/dist/icons/Plug.d.ts +3 -0
  27. package/dist/icons/Plug.js +15 -0
  28. package/dist/icons/ProviderIcon/ProviderIcon.d.ts +7 -0
  29. package/dist/icons/ProviderIcon/ProviderIcon.js +11 -0
  30. package/dist/icons/ProviderIcon/index.d.ts +2 -0
  31. package/dist/icons/ProviderIcon/index.js +1 -0
  32. package/dist/icons/ProviderIcon/paths/index.d.ts +3 -0
  33. package/dist/icons/ProviderIcon/paths/index.js +896 -0
  34. package/dist/icons/ProviderIcon/types.d.ts +1 -0
  35. package/dist/icons/ProviderIcon/types.js +0 -0
  36. package/dist/icons/Radar.d.ts +3 -0
  37. package/dist/icons/Radar.js +15 -0
  38. package/dist/icons/Rss.d.ts +3 -0
  39. package/dist/icons/Rss.js +15 -0
  40. package/dist/icons/ScrollText.d.ts +3 -0
  41. package/dist/icons/ScrollText.js +15 -0
  42. package/dist/icons/Signpost.d.ts +3 -0
  43. package/dist/icons/Signpost.js +15 -0
  44. package/dist/icons/SocialIcon/SocialIcon.d.ts +8 -0
  45. package/dist/icons/SocialIcon/SocialIcon.js +15 -0
  46. package/dist/icons/SocialIcon/index.d.ts +2 -0
  47. package/dist/icons/SocialIcon/index.js +1 -0
  48. package/dist/icons/SocialIcon/paths/index.d.ts +3 -0
  49. package/dist/icons/SocialIcon/paths/index.js +2542 -0
  50. package/dist/icons/SocialIcon/types.d.ts +2 -0
  51. package/dist/icons/SocialIcon/types.js +0 -0
  52. package/dist/icons/SquareUserRound.d.ts +3 -0
  53. package/dist/icons/SquareUserRound.js +15 -0
  54. package/dist/icons/ThumbsDown.d.ts +3 -0
  55. package/dist/icons/ThumbsDown.js +15 -0
  56. package/dist/icons/ThumbsUp.d.ts +3 -0
  57. package/dist/icons/ThumbsUp.js +15 -0
  58. package/dist/icons/UsersRound.d.ts +3 -0
  59. package/dist/icons/UsersRound.js +15 -0
  60. package/dist/icons/index.d.ts +20 -0
  61. package/dist/icons/index.js +20 -0
  62. package/dist/icons/module/Icons.figma.js +55 -1
  63. package/dist/icons/module/const.js +19 -2
  64. package/dist/metadata/components.json +2 -2
  65. package/package.json +1 -1
@@ -4,7 +4,7 @@ import type { TestableProps } from '../../utils/testId';
4
4
  import { type ButtonBaseProps } from '../ButtonBase';
5
5
  declare const buttonVariants: (props?: ({
6
6
  variant?: "primary" | "secondary" | "outline" | "ghost" | null | undefined;
7
- color?: "destructive" | "brand" | "neutral" | "neutral-alt" | null | undefined;
7
+ color?: "neutral" | "destructive" | "brand" | "neutral-alt" | null | undefined;
8
8
  } & import("class-variance-authority/types").ClassProp) | undefined) => string;
9
9
  type ButtonVariantProps = VariantProps<typeof buttonVariants>;
10
10
  export type ButtonProps<C extends ElementType = 'button'> = ButtonBaseProps<C> & ButtonVariantProps & TestableProps;
@@ -3,7 +3,7 @@ import { type VariantProps } from 'class-variance-authority';
3
3
  import type { TestableProps } from '../../utils/testId';
4
4
  declare const codeVariants: (props?: ({
5
5
  size?: "s" | "xs" | "m" | "l" | null | undefined;
6
- weight?: "bold" | "light" | "regular" | "medium" | null | undefined;
6
+ weight?: "bold" | "medium" | "light" | "regular" | null | undefined;
7
7
  color?: "primary" | "secondary" | "destructive" | "primary-alt" | null | undefined;
8
8
  italic?: boolean | null | undefined;
9
9
  truncate?: boolean | null | undefined;
@@ -4,7 +4,7 @@ import type { TestableProps } from '../../utils/testId';
4
4
  import type { PolymorphicComponentProps } from '../Polymorphic';
5
5
  declare const headingVariants: (props?: ({
6
6
  size?: "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | null | undefined;
7
- weight?: "bold" | "light" | "regular" | "medium" | null | undefined;
7
+ weight?: "bold" | "medium" | "light" | "regular" | null | undefined;
8
8
  color?: "primary" | "secondary" | "inherit" | "primary-alt" | "secondary-alt" | null | undefined;
9
9
  align?: "center" | "left" | "right" | null | undefined;
10
10
  grow?: boolean | null | undefined;
@@ -1,6 +1,6 @@
1
1
  export declare const linkVariants: (props?: ({
2
2
  type?: "table" | "alt" | "default" | "muted" | null | undefined;
3
3
  size?: "xs" | "sm" | "md" | "lg" | "xl" | null | undefined;
4
- weight?: "regular" | "medium" | null | undefined;
4
+ weight?: "medium" | "regular" | null | undefined;
5
5
  disabled?: boolean | null | undefined;
6
6
  } & import("class-variance-authority/types").ClassProp) | undefined) => string;
@@ -3,7 +3,7 @@ import { type VariantProps } from 'class-variance-authority';
3
3
  import type { TestableProps } from '../../utils/testId';
4
4
  declare const textVariants: (props?: ({
5
5
  size?: "xs" | "sm" | "md" | "lg" | "xl" | null | undefined;
6
- weight?: "bold" | "light" | "regular" | "medium" | null | undefined;
6
+ weight?: "bold" | "medium" | "light" | "regular" | null | undefined;
7
7
  color?: "primary" | "secondary" | "inherit" | "primary-alt" | "secondary-alt" | "tertiary-alt" | "danger" | null | undefined;
8
8
  align?: "center" | "left" | "right" | null | undefined;
9
9
  inline?: boolean | null | undefined;
@@ -4,7 +4,7 @@ import type { TestableProps } from '../../utils/testId';
4
4
  import { type ButtonBaseProps } from '../ButtonBase';
5
5
  declare const toggleButtonVariants: (props?: ({
6
6
  variant?: "outline" | "ghost" | null | undefined;
7
- color?: "brand" | "neutral" | null | undefined;
7
+ color?: "neutral" | "brand" | null | undefined;
8
8
  active?: boolean | null | undefined;
9
9
  } & import("class-variance-authority/types").ClassProp) | undefined) => string;
10
10
  type ToggleButtonVariantProps = VariantProps<typeof toggleButtonVariants>;
@@ -0,0 +1,3 @@
1
+ import type { FC } from 'react';
2
+ import { type SvgIconProps } from './SvgIcon';
3
+ export declare const AudioWaveform: FC<SvgIconProps>;
@@ -0,0 +1,15 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { SvgIcon } from "./SvgIcon.js";
3
+ const AudioWaveform = (props)=>/*#__PURE__*/ jsx(SvgIcon, {
4
+ ...props,
5
+ viewBox: "0 0 24 24",
6
+ children: /*#__PURE__*/ jsx("g", {
7
+ transform: "translate(1, 1)",
8
+ children: /*#__PURE__*/ jsx("path", {
9
+ d: "M14 16V3C14 2.73478 13.8946 2.48051 13.707 2.29297C13.5195 2.10543 13.2652 2 13 2C12.7348 2 12.4805 2.10543 12.293 2.29297C12.1054 2.48051 12 2.73478 12 3V19C12 19.7957 11.6837 20.5585 11.1211 21.1211C10.5585 21.6837 9.79565 22 9 22C8.20435 22 7.44151 21.6837 6.87891 21.1211C6.3163 20.5585 6 19.7957 6 19V6C6 5.73478 5.89457 5.4805 5.70703 5.29297C5.5195 5.10543 5.26522 5 5 5C4.73478 5 4.4805 5.10543 4.29297 5.29297C4.10543 5.4805 4 5.73478 4 6V10C4 10.7956 3.6837 11.5585 3.12109 12.1211C2.55848 12.6837 1.79565 13 1 13C0.447715 13 0 12.5523 0 12C0 11.4477 0.447715 11 1 11C1.26522 11 1.51949 10.8946 1.70703 10.707C1.89457 10.5195 2 10.2652 2 10V6C2 5.20435 2.3163 4.44152 2.87891 3.87891C3.44152 3.3163 4.20435 3 5 3C5.79565 3 6.55848 3.3163 7.12109 3.87891C7.6837 4.44152 8 5.20435 8 6V19C8 19.2652 8.10543 19.5195 8.29297 19.707C8.48051 19.8946 8.73478 20 9 20C9.26522 20 9.51949 19.8946 9.70703 19.707C9.89457 19.5195 10 19.2652 10 19V3C10 2.20435 10.3163 1.44152 10.8789 0.878906C11.4415 0.316297 12.2044 0 13 0C13.7956 0 14.5585 0.316297 15.1211 0.878906C15.6837 1.44152 16 2.20435 16 3V16C16 16.2652 16.1054 16.5195 16.293 16.707C16.4805 16.8946 16.7348 17 17 17C17.2652 17 17.5195 16.8946 17.707 16.707C17.8946 16.5195 18 16.2652 18 16V12C18 11.2043 18.3163 10.4415 18.8789 9.87891C19.4415 9.3163 20.2043 9 21 9C21.5523 9 22 9.44771 22 10C22 10.5523 21.5523 11 21 11C20.7348 11 20.4805 11.1054 20.293 11.293C20.1054 11.4805 20 11.7348 20 12V16C20 16.7957 19.6837 17.5585 19.1211 18.1211C18.5585 18.6837 17.7957 19 17 19C16.2043 19 15.4415 18.6837 14.8789 18.1211C14.3163 17.5585 14 16.7957 14 16Z",
10
+ fill: "currentColor"
11
+ })
12
+ })
13
+ });
14
+ AudioWaveform.displayName = 'AudioWaveformIcon';
15
+ export { AudioWaveform };
@@ -0,0 +1,3 @@
1
+ import type { FC } from 'react';
2
+ import { type SvgIconProps } from './SvgIcon';
3
+ export declare const BellCog: FC<SvgIconProps>;
@@ -0,0 +1,15 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { SvgIcon } from "./SvgIcon.js";
3
+ const BellCog = (props)=>/*#__PURE__*/ jsx(SvgIcon, {
4
+ ...props,
5
+ viewBox: "0 0 24 24",
6
+ children: /*#__PURE__*/ jsx("g", {
7
+ transform: "translate(2.0003, 1.0046)",
8
+ children: /*#__PURE__*/ jsx("path", {
9
+ d: "M10.8641 19.4907C11.1402 19.0128 11.7522 18.8489 12.2303 19.1245C12.7085 19.4006 12.8725 20.0124 12.5966 20.4907C12.3333 20.9465 11.9547 21.3251 11.4989 21.5883C11.043 21.8515 10.5253 21.9906 9.9989 21.9907C9.47247 21.9906 8.95483 21.8515 8.4989 21.5883C8.04306 21.3251 7.6635 20.9466 7.40027 20.4907C7.12461 20.0125 7.28844 19.4005 7.76648 19.1245C8.24458 18.8485 8.85641 19.0128 9.13269 19.4907C9.22038 19.6425 9.34713 19.7692 9.4989 19.8569C9.65072 19.9444 9.82364 19.9906 9.9989 19.9907C10.1743 19.9906 10.347 19.9446 10.4989 19.8569C10.6508 19.7692 10.7764 19.6425 10.8641 19.4907ZM9.62586 0.00142657C10.1771 -0.0277991 10.648 0.395559 10.6776 0.946739C10.7069 1.49799 10.2835 1.96985 9.7323 1.99947C8.45435 2.06778 7.25149 2.62349 6.37097 3.55221C5.49045 4.48098 4.999 5.71184 4.9989 6.99166C4.99885 9.34565 4.62986 10.99 4.03211 12.2553C3.44163 13.5051 2.65806 14.3122 1.99988 14.9917H17.9999C17.1685 14.1341 16.1821 13.1156 15.579 11.2827C15.4066 10.7582 15.6922 10.1936 16.2167 10.021C16.7412 9.84853 17.3067 10.1332 17.4794 10.6577C17.878 11.8692 18.4719 12.5889 19.1581 13.311L19.4569 13.6225L19.4784 13.645C19.7391 13.9316 19.9114 14.2889 19.9735 14.6713C20.0354 15.0536 19.9856 15.4461 19.829 15.8003C19.6722 16.1545 19.4154 16.456 19.0907 16.6674C18.8065 16.8524 18.4801 16.9615 18.1434 16.9858L17.9989 16.9917H1.9989C1.61147 16.9914 1.23163 16.8781 0.907106 16.6665C0.582593 16.4547 0.326193 16.1528 0.169801 15.7983C0.0134594 15.4437 -0.036291 15.0509 0.0262465 14.6684C0.0888553 14.2859 0.261089 13.9294 0.52234 13.643L0.542848 13.6215C1.20728 12.9356 1.78299 12.3333 2.22351 11.4008C2.66293 10.4706 2.99885 9.1361 2.9989 6.99166C2.99904 5.20009 3.68632 3.47646 4.91882 2.17623C6.15161 0.875951 7.83662 0.0969885 9.62586 0.00142657ZM15.5194 1.1567C15.733 0.650546 16.3159 0.410869 16.8241 0.621544C17.3319 0.832298 17.5728 1.41288 17.3661 1.92135C17.5639 2.08085 17.7437 2.26168 17.9032 2.45943C18.4122 2.25159 18.9941 2.49394 19.205 3.0024C19.4155 3.511 19.1748 4.09314 18.6678 4.30611C18.6811 4.43093 18.6893 4.55765 18.6893 4.686C18.6893 4.81403 18.6811 4.94038 18.6678 5.0649C19.175 5.27771 19.4153 5.86095 19.205 6.36959C18.9941 6.87823 18.4123 7.11969 17.9032 6.91158C17.7435 7.10963 17.5632 7.28998 17.3651 7.44967C17.5734 7.95914 17.3312 8.54189 16.8221 8.7524C16.3134 8.96254 15.7301 8.72129 15.5175 8.21432C15.3933 8.22747 15.2672 8.23579 15.1395 8.2358C15.0109 8.23579 14.8837 8.22766 14.7587 8.21432C14.5456 8.72138 13.9636 8.96226 13.455 8.75143C12.9464 8.54041 12.7036 7.95777 12.912 7.44869C12.7146 7.28937 12.5341 7.11 12.3749 6.91256C11.866 7.1192 11.2854 6.87683 11.0751 6.36861C10.8649 5.86027 11.1039 5.27704 11.6102 5.06393C11.5971 4.93974 11.5897 4.81367 11.5897 4.686C11.5897 4.55767 11.5969 4.43092 11.6102 4.30611C11.1043 4.09253 10.8647 3.51041 11.0751 3.0024C11.2858 2.49468 11.8665 2.25196 12.3749 2.45846C12.5341 2.26107 12.7146 2.0816 12.912 1.92233C12.705 1.41383 12.9472 0.832451 13.455 0.621544C13.9629 0.41107 14.5449 0.65102 14.7587 1.1567C14.8837 1.14336 15.011 1.1362 15.1395 1.13619C15.2678 1.1362 15.3946 1.14342 15.5194 1.1567ZM15.1395 3.13619C14.2837 3.13635 13.5899 3.83017 13.5897 4.686C13.5897 4.89254 13.6297 5.0898 13.703 5.26998C13.7043 5.27302 13.7066 5.27572 13.7079 5.27877C13.7101 5.28408 13.7117 5.29004 13.7137 5.29537C13.9504 5.84832 14.4999 6.23568 15.1395 6.2358C15.9955 6.23567 16.6893 5.54195 16.6893 4.686C16.6892 3.83015 15.9954 3.13632 15.1395 3.13619Z",
10
+ fill: "currentColor"
11
+ })
12
+ })
13
+ });
14
+ BellCog.displayName = 'BellCogIcon';
15
+ export { BellCog };
@@ -0,0 +1,3 @@
1
+ import type { FC } from 'react';
2
+ import { type SvgIconProps } from './SvgIcon';
3
+ export declare const Brain: FC<SvgIconProps>;
@@ -0,0 +1,15 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { SvgIcon } from "./SvgIcon.js";
3
+ const Brain = (props)=>/*#__PURE__*/ jsx(SvgIcon, {
4
+ ...props,
5
+ viewBox: "0 0 24 24",
6
+ children: /*#__PURE__*/ jsx("g", {
7
+ transform: "translate(1, 1)",
8
+ children: /*#__PURE__*/ jsx("path", {
9
+ d: "M13.2198 0.0768026C13.8215 -0.0428882 14.4426 -0.0224213 15.0352 0.136373C15.6279 0.29518 16.1765 0.588266 16.6377 0.992818C17.0988 1.39729 17.4607 1.90275 17.6954 2.46938C17.8189 2.76772 17.9038 3.07905 17.9522 3.39614C18.4182 3.59369 18.8536 3.8603 19.2413 4.19008C19.819 4.68162 20.2769 5.29894 20.5811 5.99379C20.8852 6.68863 21.0279 7.44395 20.9971 8.2018C20.9769 8.69931 20.8802 9.18884 20.7159 9.6559C21.0933 10.0755 21.4004 10.5582 21.6192 11.0866C22.0402 12.1033 22.1139 13.2307 21.8291 14.2936C21.5442 15.3565 20.917 16.2965 20.044 16.9665C20.029 16.9779 20.0132 16.9883 19.9981 16.9997C19.9974 17.4644 19.9338 17.9279 19.8047 18.3766C19.6158 19.0333 19.2947 19.6449 18.8604 20.1725C18.426 20.7001 17.8876 21.1334 17.2793 21.445C16.6713 21.7564 16.006 21.9397 15.3243 21.984C14.6423 22.0283 13.9579 21.9322 13.3145 21.7018C12.6713 21.4715 12.0818 21.112 11.5831 20.6452C11.3691 20.4449 11.1749 20.2252 11 19.9918C10.8252 20.2252 10.631 20.4449 10.417 20.6452C9.91823 21.1121 9.32884 21.4715 8.68559 21.7018C8.04216 21.9322 7.35782 22.0283 6.67583 21.984C5.99417 21.9397 5.32874 21.7564 4.72075 21.445C4.11256 21.1334 3.57401 20.7001 3.13969 20.1725C2.70545 19.6449 2.38426 19.0333 2.19536 18.3766C2.06634 17.9279 2.00265 17.4644 2.002 16.9997C1.9869 16.9883 1.97109 16.9779 1.9561 16.9665C1.08306 16.2965 0.454878 15.3565 0.169968 14.2936C-0.114729 13.2308 -0.0400245 12.1032 0.380906 11.0866C0.599614 10.5585 0.906135 10.0753 1.28325 9.6559C1.119 9.18895 1.02324 8.69918 1.00298 8.2018C0.972197 7.44398 1.11491 6.68861 1.41899 5.99379C1.72317 5.29899 2.18119 4.68161 2.75884 4.19008C3.14621 3.86053 3.58125 3.59365 4.04692 3.39614C4.09534 3.07902 4.18122 2.76775 4.30473 2.46938C4.5394 1.90279 4.90138 1.39728 5.36235 0.992818C5.82359 0.588306 6.37231 0.295191 6.96489 0.136373C7.55752 -0.0224214 8.17857 -0.0428882 8.78032 0.0768026C9.3821 0.196509 9.94883 0.452301 10.4356 0.825826C10.6415 0.98385 10.8295 1.16261 11 1.3561C11.1705 1.16265 11.3586 0.983827 11.5645 0.825826C12.0512 0.452338 12.6181 0.196524 13.2198 0.0768026ZM8.39067 2.03774C8.08979 1.97789 7.77879 1.98861 7.48247 2.06801C7.18636 2.14739 6.91221 2.29366 6.68169 2.49575C6.45126 2.69791 6.26974 2.95084 6.15239 3.23403C6.03513 3.51732 5.98389 3.82456 6.00395 4.13051C6.02408 4.43638 6.11439 4.73418 6.26762 4.99965C6.5435 5.47782 6.38042 6.08971 5.90239 6.36587C5.42426 6.64175 4.81238 6.4776 4.53618 5.99965C4.44745 5.84598 4.37003 5.68626 4.30278 5.52309C4.217 5.58182 4.13426 5.64586 4.05473 5.71352C3.70826 6.00839 3.43349 6.37878 3.25102 6.79555C3.06858 7.21244 2.98353 7.66606 3.002 8.12075C3.00772 8.26075 3.02391 8.39968 3.04887 8.53676C3.37685 8.55308 3.68991 8.73038 3.86626 9.03579C4.14206 9.514 3.97817 10.1259 3.50005 10.402C2.92835 10.7322 2.4812 11.2422 2.22856 11.8522C1.97616 12.4621 1.93178 13.1385 2.10259 13.776C2.27355 14.4137 2.65009 14.9776 3.17387 15.3795C3.6977 15.7815 4.33979 15.9996 5.00005 15.9997C5.55221 15.9997 5.99998 16.4475 6.00005 16.9997C5.99976 17.5516 5.55207 17.9996 5.00005 17.9997C4.7131 17.9996 4.42833 17.9738 4.14848 17.9254C4.26442 18.2808 4.44573 18.6119 4.68364 18.901C4.94414 19.2175 5.26712 19.4777 5.63188 19.6647C5.99679 19.8516 6.39656 19.9623 6.80571 19.9889C7.21491 20.0155 7.62571 19.9572 8.01177 19.819C8.39765 19.6808 8.7516 19.4653 9.05083 19.1852C9.35008 18.905 9.58868 18.5661 9.752 18.1901C9.91529 17.814 9.99961 17.4077 10 16.9977V12.0788C9.48999 12.4749 8.90792 12.7762 8.28032 12.9596C7.75047 13.1142 7.19511 12.8097 7.04009 12.2799C6.88536 11.75 7.18989 11.1947 7.71977 11.0397C8.37725 10.8474 8.95519 10.447 9.36626 9.89907C9.72588 9.41951 9.9408 8.8486 9.9893 8.25454L10 7.99868V3.99965C10 3.69303 9.92955 3.38992 9.79399 3.11489C9.65835 2.83987 9.46107 2.59945 9.21782 2.41274C8.97453 2.22605 8.69143 2.09762 8.39067 2.03774ZM14.5176 2.06801C14.2213 1.98861 13.9103 1.97789 13.6094 2.03774C13.3087 2.09764 13.0255 2.22609 12.7823 2.41274C12.5391 2.59944 12.3417 2.83991 12.2061 3.11489C12.0706 3.3899 12 3.69306 12 3.99965V7.99868L12.0108 8.25454C12.0593 8.84861 12.2742 9.41951 12.6338 9.89907C13.0449 10.4471 13.6228 10.8474 14.2803 11.0397C14.8103 11.1946 15.1148 11.7499 14.96 12.2799C14.8049 12.8097 14.2497 13.1143 13.7198 12.9596C13.0921 12.7761 12.5101 12.4749 12 12.0788V16.9977C12.0005 17.4077 12.0848 17.814 12.2481 18.1901C12.4114 18.5661 12.6501 18.905 12.9493 19.1852C13.2485 19.4653 13.6025 19.6808 13.9883 19.819C14.3744 19.9572 14.7852 20.0155 15.1944 19.9889C15.6036 19.9624 16.0033 19.8517 16.3682 19.6647C16.733 19.4777 17.0559 19.2175 17.3165 18.901C17.5543 18.6119 17.7347 18.2808 17.8506 17.9254C17.5711 17.9737 17.2866 17.9996 17 17.9997C16.448 17.9996 16.0003 17.5517 16 16.9997C16.0001 16.4475 16.4479 15.9997 17 15.9997C17.6603 15.9996 18.3024 15.7814 18.8262 15.3795C19.3499 14.9776 19.7265 14.4136 19.8975 13.776C20.0683 13.1384 20.024 12.4621 19.7715 11.8522C19.5189 11.2422 19.0718 10.7322 18.5 10.402C18.0219 10.1259 17.8581 9.51399 18.1338 9.03579C18.31 8.73076 18.6228 8.55348 18.9502 8.53676C18.9752 8.39961 18.9924 8.26081 18.9981 8.12075C19.0166 7.66604 18.9315 7.21246 18.7491 6.79555C18.5666 6.37873 18.2919 6.00841 17.9454 5.71352C17.8656 5.64566 17.7824 5.58197 17.6963 5.52309C17.6291 5.68612 17.5526 5.84611 17.4639 5.99965C17.1877 6.47758 16.5758 6.64185 16.0977 6.36587C15.6197 6.08972 15.4567 5.47781 15.7325 4.99965C15.8857 4.73418 15.976 4.43637 15.9961 4.13051C16.0162 3.82454 15.965 3.51734 15.8477 3.23403C15.7303 2.9508 15.5489 2.69793 15.3184 2.49575C15.0878 2.29362 14.8138 2.14738 14.5176 2.06801Z",
10
+ fill: "currentColor"
11
+ })
12
+ })
13
+ });
14
+ Brain.displayName = 'BrainIcon';
15
+ export { Brain };
@@ -0,0 +1,3 @@
1
+ import type { FC } from 'react';
2
+ import { type SvgIconProps } from './SvgIcon';
3
+ export declare const Collapse: FC<SvgIconProps>;
@@ -0,0 +1,15 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { SvgIcon } from "./SvgIcon.js";
3
+ const Collapse = (props)=>/*#__PURE__*/ jsx(SvgIcon, {
4
+ ...props,
5
+ viewBox: "0 0 24 24",
6
+ children: /*#__PURE__*/ jsx("g", {
7
+ transform: "translate(3, 3)",
8
+ children: /*#__PURE__*/ jsx("path", {
9
+ d: "M17 0C17.5523 0 18 0.447715 18 1V17C18 17.5523 17.5523 18 17 18H1C0.447715 18 0 17.5523 0 17V1C0 0.447715 0.447715 0 1 0H17ZM2 16H16V2H2V16ZM10.0049 8H14V10H10.0049H8.00488H4V8H8.00488H10.0049Z",
10
+ fill: "currentColor"
11
+ })
12
+ })
13
+ });
14
+ Collapse.displayName = 'CollapseIcon';
15
+ export { Collapse };
package/dist/icons/Dot.js CHANGED
@@ -4,9 +4,9 @@ const Dot = (props)=>/*#__PURE__*/ jsx(SvgIcon, {
4
4
  ...props,
5
5
  viewBox: "0 0 24 24",
6
6
  stroke: "currentColor",
7
- "stroke-width": "2",
8
- "stroke-linecap": "round",
9
- "stroke-linejoin": "round",
7
+ strokeWidth: "2",
8
+ strokeLinecap: "round",
9
+ strokeLinejoin: "round",
10
10
  children: /*#__PURE__*/ jsx("circle", {
11
11
  cx: "12.1",
12
12
  cy: "12.1",
@@ -0,0 +1,3 @@
1
+ import type { FC } from 'react';
2
+ import { type SvgIconProps } from './SvgIcon';
3
+ export declare const Duplicate: FC<SvgIconProps>;
@@ -0,0 +1,15 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { SvgIcon } from "./SvgIcon.js";
3
+ const Duplicate = (props)=>/*#__PURE__*/ jsx(SvgIcon, {
4
+ ...props,
5
+ viewBox: "0 0 24 24",
6
+ children: /*#__PURE__*/ jsx("g", {
7
+ transform: "translate(1, 1)",
8
+ children: /*#__PURE__*/ jsx("path", {
9
+ d: "M14 0C16.2091 0 18 1.79086 18 4V5C20.2091 5 22 6.79086 22 9V18C22 20.2091 20.2091 22 18 22H8C5.79086 22 4 20.2091 4 18C1.79086 18 0 16.2091 0 14V4C0 1.79086 1.79086 0 4 0H14ZM18 14C18 16.2091 16.2091 18 14 18H6C6 19.1046 6.89543 20 8 20H18C19.1046 20 20 19.1046 20 18V9C20 7.89543 19.1046 7 18 7V14ZM4 2C2.89543 2 2 2.89543 2 4V14C2 15.1046 2.89543 16 4 16H14C15.1046 16 16 15.1046 16 14V4C16 2.89543 15.1046 2 14 2H4ZM9 5C9.55228 5 10 5.44772 10 6V8H12C12.5523 8 13 8.44772 13 9C13 9.55228 12.5523 10 12 10H10V12C10 12.5523 9.55228 13 9 13C8.44772 13 8 12.5523 8 12V10H6C5.44772 10 5 9.55228 5 9C5 8.44772 5.44772 8 6 8H8V6C8 5.44772 8.44772 5 9 5Z",
10
+ fill: "currentColor"
11
+ })
12
+ })
13
+ });
14
+ Duplicate.displayName = 'DuplicateIcon';
15
+ export { Duplicate };
@@ -0,0 +1,3 @@
1
+ import type { FC } from 'react';
2
+ import { type SvgIconProps } from './SvgIcon';
3
+ export declare const Expand: FC<SvgIconProps>;
@@ -0,0 +1,15 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { SvgIcon } from "./SvgIcon.js";
3
+ const Expand = (props)=>/*#__PURE__*/ jsx(SvgIcon, {
4
+ ...props,
5
+ viewBox: "0 0 24 24",
6
+ children: /*#__PURE__*/ jsx("g", {
7
+ transform: "translate(3, 3)",
8
+ children: /*#__PURE__*/ jsx("path", {
9
+ d: "M17 0C17.5523 0 18 0.447715 18 1V17C18 17.5523 17.5523 18 17 18H1C0.447715 18 0 17.5523 0 17V1C0 0.447715 0.447715 0 1 0H17ZM2 16H16V2H2V16ZM10.0049 8H14V10H10.0049V14H8.00488V10H4V8H8.00488V4H10.0049V8Z",
10
+ fill: "currentColor"
11
+ })
12
+ })
13
+ });
14
+ Expand.displayName = 'ExpandIcon';
15
+ export { Expand };
@@ -0,0 +1,3 @@
1
+ import type { FC } from 'react';
2
+ import { type SvgIconProps } from './SvgIcon';
3
+ export declare const FastForward: FC<SvgIconProps>;
@@ -0,0 +1,15 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { SvgIcon } from "./SvgIcon.js";
3
+ const FastForward = (props)=>/*#__PURE__*/ jsx(SvgIcon, {
4
+ ...props,
5
+ viewBox: "0 0 24 24",
6
+ children: /*#__PURE__*/ jsx("g", {
7
+ transform: "translate(1, 3.0006)",
8
+ children: /*#__PURE__*/ jsx("path", {
9
+ d: "M11.8516 0.228422C12.3996 0.00147565 13.0032 -0.0581208 13.585 0.0575231C14.1667 0.173195 14.7016 0.458589 15.1211 0.877836V0.878812L21.1211 6.87881C21.6834 7.44131 21.9999 8.20458 22 8.99991C21.9999 9.79509 21.6832 10.5576 21.1211 11.12V11.121L15.1211 17.121C14.7016 17.5404 14.1667 17.8256 13.585 17.9413C13.0031 18.057 12.3996 17.9974 11.8516 17.7704C11.3037 17.5434 10.8354 17.159 10.5059 16.6659C10.1764 16.1728 10.0002 15.593 10 14.9999V12.2421L5.12109 17.121C4.70157 17.5404 4.16675 17.8256 3.58496 17.9413C3.00314 18.057 2.39963 17.9974 1.85156 17.7704C1.30373 17.5434 0.835384 17.159 0.505859 16.6659C0.176374 16.1728 0.000168701 15.593 0 14.9999V2.99893C0.000257793 2.40591 0.176329 1.82596 0.505859 1.33291C0.835409 0.83994 1.30375 0.45542 1.85156 0.228422C2.39957 0.00147565 3.0032 -0.0581208 3.58496 0.0575231C4.16667 0.173195 4.70159 0.458588 5.12109 0.877836V0.878812L10 5.75772V2.99893C10.0003 2.40591 10.1763 1.82596 10.5059 1.33291C10.8354 0.83994 11.3038 0.45542 11.8516 0.228422ZM3.19531 2.01944C3.00142 1.98089 2.79984 2.00046 2.61719 2.07608C2.4347 2.1517 2.27878 2.28006 2.16895 2.44424C2.05912 2.60856 2.00011 2.80227 2 2.99991V14.9989C2.00004 15.1966 2.05916 15.3902 2.16895 15.5546C2.27876 15.7189 2.43465 15.8471 2.61719 15.9228C2.79989 15.9984 3.00136 16.018 3.19531 15.9794C3.3891 15.9408 3.56728 15.8457 3.70703 15.706L9.70703 9.70596C9.89406 9.51859 9.99989 9.26466 10 8.99991C9.99991 8.73501 9.89423 8.4803 9.70703 8.29287L3.70703 2.29287C3.56728 2.15323 3.38906 2.05803 3.19531 2.01944ZM13.1953 2.01944C13.0014 1.98089 12.7998 2.00046 12.6172 2.07608C12.4347 2.1517 12.2788 2.28006 12.1689 2.44424C12.0591 2.60856 12.0001 2.80227 12 2.99991V14.9989C12 15.1966 12.0592 15.3902 12.1689 15.5546C12.2788 15.7189 12.4347 15.8471 12.6172 15.9228C12.7999 15.9984 13.0014 16.018 13.1953 15.9794C13.3891 15.9408 13.5673 15.8457 13.707 15.706L19.707 9.70596C19.8941 9.51859 19.9999 9.26466 20 8.99991C19.9999 8.73501 19.8942 8.4803 19.707 8.29287L13.707 2.29287C13.5673 2.15323 13.3891 2.05803 13.1953 2.01944Z",
10
+ fill: "currentColor"
11
+ })
12
+ })
13
+ });
14
+ FastForward.displayName = 'FastForwardIcon';
15
+ export { FastForward };
@@ -0,0 +1,3 @@
1
+ import type { FC } from 'react';
2
+ import { type SvgIconProps } from './SvgIcon';
3
+ export declare const FilePlus: FC<SvgIconProps>;
@@ -0,0 +1,15 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { SvgIcon } from "./SvgIcon.js";
3
+ const FilePlus = (props)=>/*#__PURE__*/ jsx(SvgIcon, {
4
+ ...props,
5
+ viewBox: "0 0 24 24",
6
+ children: /*#__PURE__*/ jsx("g", {
7
+ transform: "translate(3, 1)",
8
+ children: /*#__PURE__*/ jsx("path", {
9
+ d: "M11.04 0.000976562C11.4743 0.00553077 11.9042 0.0924528 12.3057 0.258789C12.7193 0.430223 13.0949 0.681982 13.4111 0.999023L16.9971 4.58496L17.1133 4.70605C17.3773 4.99585 17.5896 5.32951 17.7402 5.69238C17.9122 6.1067 18.0005 6.55143 18 7V19C18 19.7956 17.6837 20.5585 17.1211 21.1211C16.5585 21.6837 15.7957 22 15 22H3C2.20435 22 1.44152 21.6837 0.878906 21.1211C0.316298 20.5585 0 19.7956 0 19V3C8.20837e-07 2.20435 0.316298 1.44151 0.878906 0.878906C1.44152 0.316298 2.20435 0 3 0H11C11.0134 0 11.0268 0.000453394 11.04 0.000976562ZM3 2C2.73478 2 2.4805 2.10543 2.29297 2.29297C2.10543 2.4805 2 2.73478 2 3V19C2 19.2652 2.10543 19.5195 2.29297 19.707C2.48051 19.8946 2.73478 20 3 20H15C15.2652 20 15.5195 19.8946 15.707 19.707C15.8946 19.5195 16 19.2652 16 19V8H12C11.4696 8 10.961 7.78913 10.5859 7.41406C10.2109 7.03899 10 6.53043 10 6V2H3ZM9 10C9.55228 10 10 10.4477 10 11V13H12C12.5523 13 13 13.4477 13 14C13 14.5523 12.5523 15 12 15H10V17C10 17.5523 9.55228 18 9 18C8.44772 18 8 17.5523 8 17V15H6C5.44772 15 5 14.5523 5 14C5 13.4477 5.44772 13 6 13H8V11C8 10.4477 8.44772 10 9 10ZM12 6H15.584L12 2.41602V6Z",
10
+ fill: "currentColor"
11
+ })
12
+ })
13
+ });
14
+ FilePlus.displayName = 'FilePlusIcon';
15
+ export { FilePlus };
@@ -0,0 +1,3 @@
1
+ import type { FC } from 'react';
2
+ import { type SvgIconProps } from './SvgIcon';
3
+ export declare const GitBranch: FC<SvgIconProps>;
@@ -0,0 +1,15 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { SvgIcon } from "./SvgIcon.js";
3
+ const GitBranch = (props)=>/*#__PURE__*/ jsx(SvgIcon, {
4
+ ...props,
5
+ viewBox: "0 0 24 24",
6
+ children: /*#__PURE__*/ jsx("g", {
7
+ transform: "translate(2, 2)",
8
+ children: /*#__PURE__*/ jsx("path", {
9
+ d: "M16 0C18.2091 0 20 1.79086 20 4C20 6.20914 18.2091 8 16 8C14.1531 8 12.5988 6.74823 12.1387 5.04688C10.3336 5.24222 8.63863 6.04691 7.34277 7.34277C6.04691 8.63863 5.24222 10.3336 5.04688 12.1387C6.74823 12.5988 8 14.1531 8 16C8 18.2091 6.20914 20 4 20C1.79086 20 0 18.2091 0 16C0 14.1362 1.27477 12.57 3 12.126V1C3 0.447715 3.44772 0 4 0C4.55228 0 5 0.447715 5 1V7.00098C5.28242 6.62437 5.59195 6.26547 5.92871 5.92871C7.59458 4.26284 9.78803 3.2475 12.1162 3.04102C12.5459 1.29508 14.1215 0 16 0ZM4 14C2.89543 14 2 14.8954 2 16C2 17.1046 2.89543 18 4 18C5.10457 18 6 17.1046 6 16C6 14.8954 5.10457 14 4 14ZM16 2C14.8954 2 14 2.89543 14 4C14 5.10457 14.8954 6 16 6C17.1046 6 18 5.10457 18 4C18 2.89543 17.1046 2 16 2Z",
10
+ fill: "currentColor"
11
+ })
12
+ })
13
+ });
14
+ GitBranch.displayName = 'GitBranchIcon';
15
+ export { GitBranch };
@@ -0,0 +1,3 @@
1
+ import type { FC } from 'react';
2
+ import { type SvgIconProps } from './SvgIcon';
3
+ export declare const Plug: FC<SvgIconProps>;
@@ -0,0 +1,15 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { SvgIcon } from "./SvgIcon.js";
3
+ const Plug = (props)=>/*#__PURE__*/ jsx(SvgIcon, {
4
+ ...props,
5
+ viewBox: "0 0 24 24",
6
+ children: /*#__PURE__*/ jsx("g", {
7
+ transform: "translate(5, 1)",
8
+ children: /*#__PURE__*/ jsx("path", {
9
+ d: "M10 0C10.5523 0 11 0.447715 11 1V6H12C12.5304 6 13.039 6.21086 13.4141 6.58594C13.7891 6.96101 14 7.46957 14 8V12C14 13.3261 13.4728 14.5975 12.5352 15.5352C11.5975 16.4728 10.3261 17 9 17H8V21C8 21.5523 7.55228 22 7 22C6.44772 22 6 21.5523 6 21V17H5C3.67392 17 2.40253 16.4728 1.46484 15.5352C0.527162 14.5975 0 13.3261 0 12V8C0 7.46957 0.210865 6.96101 0.585938 6.58594C0.96101 6.21087 1.46957 6 2 6H3V1C3 0.447715 3.44772 0 4 0C4.55228 0 5 0.447715 5 1V6H9V1C9 0.447715 9.44772 0 10 0ZM2 12C2 12.7956 2.3163 13.5585 2.87891 14.1211C3.44152 14.6837 4.20435 15 5 15H9C9.79565 15 10.5585 14.6837 11.1211 14.1211C11.6837 13.5585 12 12.7956 12 12V8H2V12Z",
10
+ fill: "currentColor"
11
+ })
12
+ })
13
+ });
14
+ Plug.displayName = 'PlugIcon';
15
+ export { Plug };
@@ -0,0 +1,7 @@
1
+ import type { FC } from 'react';
2
+ import { type SvgIconProps } from '../SvgIcon';
3
+ import type { ProviderIconName } from './types';
4
+ export interface ProviderIconProps extends Omit<SvgIconProps, 'children'> {
5
+ name: ProviderIconName;
6
+ }
7
+ export declare const ProviderIcon: FC<ProviderIconProps>;
@@ -0,0 +1,11 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { SvgIcon } from "../SvgIcon.js";
3
+ import { providerIconPaths } from "./paths/index.js";
4
+ const ProviderIcon = ({ name, ...props })=>/*#__PURE__*/ jsx(SvgIcon, {
5
+ ...props,
6
+ viewBox: "0 0 24 24",
7
+ "data-slot": "provider-icon",
8
+ children: providerIconPaths[name]
9
+ });
10
+ ProviderIcon.displayName = 'ProviderIcon';
11
+ export { ProviderIcon };
@@ -0,0 +1,2 @@
1
+ export { ProviderIcon, type ProviderIconProps } from './ProviderIcon';
2
+ export type { ProviderIconName } from './types';
@@ -0,0 +1 @@
1
+ export { ProviderIcon } from "./ProviderIcon.js";
@@ -0,0 +1,3 @@
1
+ import type { ReactNode } from 'react';
2
+ import type { ProviderIconName } from '../types';
3
+ export declare const providerIconPaths: Record<ProviderIconName, ReactNode>;