@bitrise/bitkit-v2 0.3.239 → 0.3.241

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 (45) hide show
  1. package/AGENTS.md +1 -1
  2. package/dist/icons/IconBuildHub.d.ts +8 -0
  3. package/dist/icons/IconBuildHub.js +31 -0
  4. package/dist/icons/IconBuildHub.js.map +1 -0
  5. package/dist/icons/IconBuildHubFilled.d.ts +8 -0
  6. package/dist/icons/IconBuildHubFilled.js +31 -0
  7. package/dist/icons/IconBuildHubFilled.js.map +1 -0
  8. package/dist/icons/IconFileYml.d.ts +8 -0
  9. package/dist/icons/IconFileYml.js +31 -0
  10. package/dist/icons/IconFileYml.js.map +1 -0
  11. package/dist/icons/index.d.ts +3 -0
  12. package/dist/main.js +4 -1
  13. package/dist/svgs/16x16/icon-build-hub-16.js +21 -0
  14. package/dist/svgs/16x16/icon-build-hub-16.js.map +1 -0
  15. package/dist/svgs/16x16/icon-build-hub-filled-16.js +25 -0
  16. package/dist/svgs/16x16/icon-build-hub-filled-16.js.map +1 -0
  17. package/dist/svgs/16x16/icon-file-doc-16.js +8 -3
  18. package/dist/svgs/16x16/icon-file-doc-16.js.map +1 -1
  19. package/dist/svgs/16x16/icon-file-pdf-16.js +3 -3
  20. package/dist/svgs/16x16/icon-file-pdf-16.js.map +1 -1
  21. package/dist/svgs/16x16/icon-file-plist-16.js +4 -4
  22. package/dist/svgs/16x16/icon-file-plist-16.js.map +1 -1
  23. package/dist/svgs/16x16/icon-file-yml-16.js +21 -0
  24. package/dist/svgs/16x16/icon-file-yml-16.js.map +1 -0
  25. package/dist/svgs/16x16/icon-file-zip-16.js +3 -3
  26. package/dist/svgs/16x16/icon-file-zip-16.js.map +1 -1
  27. package/dist/svgs/16x16/icon-skip-16.js +2 -2
  28. package/dist/svgs/16x16/icon-skip-16.js.map +1 -1
  29. package/dist/svgs/24x24/icon-build-hub-24.js +21 -0
  30. package/dist/svgs/24x24/icon-build-hub-24.js.map +1 -0
  31. package/dist/svgs/24x24/icon-build-hub-filled-24.js +25 -0
  32. package/dist/svgs/24x24/icon-build-hub-filled-24.js.map +1 -0
  33. package/dist/svgs/24x24/icon-file-doc-24.js +8 -3
  34. package/dist/svgs/24x24/icon-file-doc-24.js.map +1 -1
  35. package/dist/svgs/24x24/icon-file-pdf-24.js +3 -3
  36. package/dist/svgs/24x24/icon-file-pdf-24.js.map +1 -1
  37. package/dist/svgs/24x24/icon-file-plist-24.js +4 -4
  38. package/dist/svgs/24x24/icon-file-plist-24.js.map +1 -1
  39. package/dist/svgs/24x24/icon-file-yml-24.js +21 -0
  40. package/dist/svgs/24x24/icon-file-yml-24.js.map +1 -0
  41. package/dist/svgs/24x24/icon-file-zip-24.js +3 -3
  42. package/dist/svgs/24x24/icon-file-zip-24.js.map +1 -1
  43. package/dist/svgs/24x24/icon-skip-24.js +2 -2
  44. package/dist/svgs/24x24/icon-skip-24.js.map +1 -1
  45. package/package.json +1 -1
package/AGENTS.md CHANGED
@@ -117,7 +117,7 @@ Bitkit components use consistent prop names across the library:
117
117
 
118
118
  - **Only use tokens that exist** — never guess token names. Verify via the Storybook MCP `Docs/Colors - *`, `Docs/Shadows`, `Docs/Text Styles`, etc. pages.
119
119
  - **Slash-separated token paths** — `background/primary`, not `background.primary`.
120
- - **Always semantic colors** — use semantic tokens (`bg/surface`, `fg/base`, `border/minimal`). Never palette colors (`purple.50`), system colors (`sys.fg.base`), raw codes (`#fff`), or color names (`white`, `grey`).
120
+ - **Always semantic colors** — use semantic tokens (`background/primary`, `text/body`, `border/minimal`, `icon/secondary`). Never palette colors (`purple.50`), system colors (`sys.fg.base`), raw codes (`#fff`), or color names (`white`, `grey`).
121
121
  - **Always use `textStyle`** — never set `fontFamily` or `fontSize` on `<Text>`. Use `textStyle="body/md/regular"`, `textStyle="code/md"`, etc.
122
122
  - **Sizes as strings** — `width="32"`, not `width={32}`. Tokens are strings.
123
123
  - **Use existing size tokens** — closest existing token (1, 2, 4, 6, 8, 12, 16, 20, 24, 32, 40, 48, 64, 96, 128) representing pixel values (1=1px, 32=32px). Avoid arbitrary px (`width="100px"`).
@@ -0,0 +1,8 @@
1
+ import { IconProps } from '@chakra-ui/react/icon';
2
+ export interface IconBuildHubProps extends IconProps {
3
+ size?: '16' | '24';
4
+ }
5
+ declare const IconBuildHub: import('react').ForwardRefExoticComponent<IconBuildHubProps> & {
6
+ __bitkitIcon: true;
7
+ };
8
+ export default IconBuildHub;
@@ -0,0 +1,31 @@
1
+ import { bitkitIcon } from "./bitkitIcon.js";
2
+ import ForwardRef from "../svgs/16x16/icon-build-hub-16.js";
3
+ import ForwardRef$1 from "../svgs/24x24/icon-build-hub-24.js";
4
+ import { Icon } from "@chakra-ui/react/icon";
5
+ import { jsx } from "react/jsx-runtime";
6
+ //#region lib/icons/IconBuildHub.tsx
7
+ var IconBuildHub = bitkitIcon(function IconBuildHub({ size = "24", ...props }, ref) {
8
+ if (size === "16") return /* @__PURE__ */ jsx(Icon, {
9
+ asChild: true,
10
+ ref,
11
+ ...props,
12
+ children: /* @__PURE__ */ jsx(ForwardRef, {
13
+ width: "16",
14
+ height: "16"
15
+ })
16
+ });
17
+ return /* @__PURE__ */ jsx(Icon, {
18
+ asChild: true,
19
+ ref,
20
+ ...props,
21
+ children: /* @__PURE__ */ jsx(ForwardRef$1, {
22
+ width: "24",
23
+ height: "24"
24
+ })
25
+ });
26
+ });
27
+ IconBuildHub.displayName = "IconBuildHub";
28
+ //#endregion
29
+ export { IconBuildHub as default };
30
+
31
+ //# sourceMappingURL=IconBuildHub.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IconBuildHub.js","names":[],"sources":["../../lib/icons/IconBuildHub.tsx"],"sourcesContent":["// This file is auto-generated by 'scripts/generateIconComponents.ts'. Do not edit it manually.\n\nimport { Icon, type IconProps } from '@chakra-ui/react/icon';\nimport { type Ref } from 'react';\n\nimport SVG16 from '../svgs/16x16/icon-build-hub-16.svg?react';\nimport SVG24 from '../svgs/24x24/icon-build-hub-24.svg?react';\nimport { bitkitIcon } from './bitkitIcon';\n\nexport interface IconBuildHubProps extends IconProps {\n size?: '16' | '24';\n}\n\nconst IconBuildHub = bitkitIcon(function IconBuildHub(\n { size = '24', ...props }: IconBuildHubProps,\n ref: Ref<SVGSVGElement>,\n) {\n if (size === '16') {\n return (\n <Icon asChild ref={ref} {...props}>\n <SVG16 width=\"16\" height=\"16\" />\n </Icon>\n );\n }\n\n return (\n <Icon asChild ref={ref} {...props}>\n <SVG24 width=\"24\" height=\"24\" />\n </Icon>\n );\n});\n\nIconBuildHub.displayName = 'IconBuildHub';\n\nexport default IconBuildHub;\n"],"mappings":";;;;;;AAaA,IAAM,eAAe,WAAW,SAAS,aACvC,EAAE,OAAO,MAAM,GAAG,SAClB,KACA;CACA,IAAI,SAAS,MACX,OACE,oBAAC,MAAD;EAAM,SAAA;EAAa;EAAK,GAAI;YAC1B,oBAAC,YAAD;GAAO,OAAM;GAAK,QAAO;EAAM,CAAA;CAC3B,CAAA;CAIV,OACE,oBAAC,MAAD;EAAM,SAAA;EAAa;EAAK,GAAI;YAC1B,oBAAC,cAAD;GAAO,OAAM;GAAK,QAAO;EAAM,CAAA;CAC3B,CAAA;AAEV,CAAC;AAED,aAAa,cAAc"}
@@ -0,0 +1,8 @@
1
+ import { IconProps } from '@chakra-ui/react/icon';
2
+ export interface IconBuildHubFilledProps extends IconProps {
3
+ size?: '16' | '24';
4
+ }
5
+ declare const IconBuildHubFilled: import('react').ForwardRefExoticComponent<IconBuildHubFilledProps> & {
6
+ __bitkitIcon: true;
7
+ };
8
+ export default IconBuildHubFilled;
@@ -0,0 +1,31 @@
1
+ import { bitkitIcon } from "./bitkitIcon.js";
2
+ import ForwardRef from "../svgs/16x16/icon-build-hub-filled-16.js";
3
+ import ForwardRef$1 from "../svgs/24x24/icon-build-hub-filled-24.js";
4
+ import { Icon } from "@chakra-ui/react/icon";
5
+ import { jsx } from "react/jsx-runtime";
6
+ //#region lib/icons/IconBuildHubFilled.tsx
7
+ var IconBuildHubFilled = bitkitIcon(function IconBuildHubFilled({ size = "24", ...props }, ref) {
8
+ if (size === "16") return /* @__PURE__ */ jsx(Icon, {
9
+ asChild: true,
10
+ ref,
11
+ ...props,
12
+ children: /* @__PURE__ */ jsx(ForwardRef, {
13
+ width: "16",
14
+ height: "16"
15
+ })
16
+ });
17
+ return /* @__PURE__ */ jsx(Icon, {
18
+ asChild: true,
19
+ ref,
20
+ ...props,
21
+ children: /* @__PURE__ */ jsx(ForwardRef$1, {
22
+ width: "24",
23
+ height: "24"
24
+ })
25
+ });
26
+ });
27
+ IconBuildHubFilled.displayName = "IconBuildHubFilled";
28
+ //#endregion
29
+ export { IconBuildHubFilled as default };
30
+
31
+ //# sourceMappingURL=IconBuildHubFilled.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IconBuildHubFilled.js","names":[],"sources":["../../lib/icons/IconBuildHubFilled.tsx"],"sourcesContent":["// This file is auto-generated by 'scripts/generateIconComponents.ts'. Do not edit it manually.\n\nimport { Icon, type IconProps } from '@chakra-ui/react/icon';\nimport { type Ref } from 'react';\n\nimport SVG16 from '../svgs/16x16/icon-build-hub-filled-16.svg?react';\nimport SVG24 from '../svgs/24x24/icon-build-hub-filled-24.svg?react';\nimport { bitkitIcon } from './bitkitIcon';\n\nexport interface IconBuildHubFilledProps extends IconProps {\n size?: '16' | '24';\n}\n\nconst IconBuildHubFilled = bitkitIcon(function IconBuildHubFilled(\n { size = '24', ...props }: IconBuildHubFilledProps,\n ref: Ref<SVGSVGElement>,\n) {\n if (size === '16') {\n return (\n <Icon asChild ref={ref} {...props}>\n <SVG16 width=\"16\" height=\"16\" />\n </Icon>\n );\n }\n\n return (\n <Icon asChild ref={ref} {...props}>\n <SVG24 width=\"24\" height=\"24\" />\n </Icon>\n );\n});\n\nIconBuildHubFilled.displayName = 'IconBuildHubFilled';\n\nexport default IconBuildHubFilled;\n"],"mappings":";;;;;;AAaA,IAAM,qBAAqB,WAAW,SAAS,mBAC7C,EAAE,OAAO,MAAM,GAAG,SAClB,KACA;CACA,IAAI,SAAS,MACX,OACE,oBAAC,MAAD;EAAM,SAAA;EAAa;EAAK,GAAI;YAC1B,oBAAC,YAAD;GAAO,OAAM;GAAK,QAAO;EAAM,CAAA;CAC3B,CAAA;CAIV,OACE,oBAAC,MAAD;EAAM,SAAA;EAAa;EAAK,GAAI;YAC1B,oBAAC,cAAD;GAAO,OAAM;GAAK,QAAO;EAAM,CAAA;CAC3B,CAAA;AAEV,CAAC;AAED,mBAAmB,cAAc"}
@@ -0,0 +1,8 @@
1
+ import { IconProps } from '@chakra-ui/react/icon';
2
+ export interface IconFileYmlProps extends IconProps {
3
+ size?: '16' | '24';
4
+ }
5
+ declare const IconFileYml: import('react').ForwardRefExoticComponent<IconFileYmlProps> & {
6
+ __bitkitIcon: true;
7
+ };
8
+ export default IconFileYml;
@@ -0,0 +1,31 @@
1
+ import { bitkitIcon } from "./bitkitIcon.js";
2
+ import ForwardRef from "../svgs/16x16/icon-file-yml-16.js";
3
+ import ForwardRef$1 from "../svgs/24x24/icon-file-yml-24.js";
4
+ import { Icon } from "@chakra-ui/react/icon";
5
+ import { jsx } from "react/jsx-runtime";
6
+ //#region lib/icons/IconFileYml.tsx
7
+ var IconFileYml = bitkitIcon(function IconFileYml({ size = "24", ...props }, ref) {
8
+ if (size === "16") return /* @__PURE__ */ jsx(Icon, {
9
+ asChild: true,
10
+ ref,
11
+ ...props,
12
+ children: /* @__PURE__ */ jsx(ForwardRef, {
13
+ width: "16",
14
+ height: "16"
15
+ })
16
+ });
17
+ return /* @__PURE__ */ jsx(Icon, {
18
+ asChild: true,
19
+ ref,
20
+ ...props,
21
+ children: /* @__PURE__ */ jsx(ForwardRef$1, {
22
+ width: "24",
23
+ height: "24"
24
+ })
25
+ });
26
+ });
27
+ IconFileYml.displayName = "IconFileYml";
28
+ //#endregion
29
+ export { IconFileYml as default };
30
+
31
+ //# sourceMappingURL=IconFileYml.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IconFileYml.js","names":[],"sources":["../../lib/icons/IconFileYml.tsx"],"sourcesContent":["// This file is auto-generated by 'scripts/generateIconComponents.ts'. Do not edit it manually.\n\nimport { Icon, type IconProps } from '@chakra-ui/react/icon';\nimport { type Ref } from 'react';\n\nimport SVG16 from '../svgs/16x16/icon-file-yml-16.svg?react';\nimport SVG24 from '../svgs/24x24/icon-file-yml-24.svg?react';\nimport { bitkitIcon } from './bitkitIcon';\n\nexport interface IconFileYmlProps extends IconProps {\n size?: '16' | '24';\n}\n\nconst IconFileYml = bitkitIcon(function IconFileYml(\n { size = '24', ...props }: IconFileYmlProps,\n ref: Ref<SVGSVGElement>,\n) {\n if (size === '16') {\n return (\n <Icon asChild ref={ref} {...props}>\n <SVG16 width=\"16\" height=\"16\" />\n </Icon>\n );\n }\n\n return (\n <Icon asChild ref={ref} {...props}>\n <SVG24 width=\"24\" height=\"24\" />\n </Icon>\n );\n});\n\nIconFileYml.displayName = 'IconFileYml';\n\nexport default IconFileYml;\n"],"mappings":";;;;;;AAaA,IAAM,cAAc,WAAW,SAAS,YACtC,EAAE,OAAO,MAAM,GAAG,SAClB,KACA;CACA,IAAI,SAAS,MACX,OACE,oBAAC,MAAD;EAAM,SAAA;EAAa;EAAK,GAAI;YAC1B,oBAAC,YAAD;GAAO,OAAM;GAAK,QAAO;EAAM,CAAA;CAC3B,CAAA;CAIV,OACE,oBAAC,MAAD;EAAM,SAAA;EAAa;EAAK,GAAI;YAC1B,oBAAC,cAAD;GAAO,OAAM;GAAK,QAAO;EAAM,CAAA;CAC3B,CAAA;AAEV,CAAC;AAED,YAAY,cAAc"}
@@ -69,6 +69,8 @@ export { default as IconBuild, type IconBuildProps } from './IconBuild';
69
69
  export { default as IconBuildCache, type IconBuildCacheProps } from './IconBuildCache';
70
70
  export { default as IconBuildCacheFilled, type IconBuildCacheFilledProps } from './IconBuildCacheFilled';
71
71
  export { default as IconBuildEnvSetup, type IconBuildEnvSetupProps } from './IconBuildEnvSetup';
72
+ export { default as IconBuildHub, type IconBuildHubProps } from './IconBuildHub';
73
+ export { default as IconBuildHubFilled, type IconBuildHubFilledProps } from './IconBuildHubFilled';
72
74
  export { default as IconCalendar, type IconCalendarProps } from './IconCalendar';
73
75
  export { default as IconChangePlan, type IconChangePlanProps } from './IconChangePlan';
74
76
  export { default as IconChat, type IconChatProps } from './IconChat';
@@ -131,6 +133,7 @@ export { default as IconFastlane, type IconFastlaneProps } from './IconFastlane'
131
133
  export { default as IconFileDoc, type IconFileDocProps } from './IconFileDoc';
132
134
  export { default as IconFilePdf, type IconFilePdfProps } from './IconFilePdf';
133
135
  export { default as IconFilePlist, type IconFilePlistProps } from './IconFilePlist';
136
+ export { default as IconFileYml, type IconFileYmlProps } from './IconFileYml';
134
137
  export { default as IconFileZip, type IconFileZipProps } from './IconFileZip';
135
138
  export { default as IconFilter, type IconFilterProps } from './IconFilter';
136
139
  export { default as IconFlag, type IconFlagProps } from './IconFlag';
package/dist/main.js CHANGED
@@ -54,6 +54,8 @@ import IconBuild from "./icons/IconBuild.js";
54
54
  import IconBuildCache from "./icons/IconBuildCache.js";
55
55
  import IconBuildCacheFilled from "./icons/IconBuildCacheFilled.js";
56
56
  import IconBuildEnvSetup from "./icons/IconBuildEnvSetup.js";
57
+ import IconBuildHub from "./icons/IconBuildHub.js";
58
+ import IconBuildHubFilled from "./icons/IconBuildHubFilled.js";
57
59
  import IconCalendar from "./icons/IconCalendar.js";
58
60
  import IconChangePlan from "./icons/IconChangePlan.js";
59
61
  import IconChat from "./icons/IconChat.js";
@@ -116,6 +118,7 @@ import IconFastlane from "./icons/IconFastlane.js";
116
118
  import IconFileDoc from "./icons/IconFileDoc.js";
117
119
  import IconFilePdf from "./icons/IconFilePdf.js";
118
120
  import IconFilePlist from "./icons/IconFilePlist.js";
121
+ import IconFileYml from "./icons/IconFileYml.js";
119
122
  import IconFileZip from "./icons/IconFileZip.js";
120
123
  import IconFilter from "./icons/IconFilter.js";
121
124
  import IconFlag from "./icons/IconFlag.js";
@@ -366,4 +369,4 @@ import BitkitTreeView, { createTreeCollection } from "./components/BitkitTreeVie
366
369
  import useResponsive, { ResponsiveProvider } from "./hooks/useResponsive.js";
367
370
  import bitkitTheme from "./theme/index.js";
368
371
  import Provider from "./providers/BitkitProvider.js";
369
- export { BitkitAccordion, BitkitActionBar, BitkitActionMenu, BitkitAlert, BitkitAvatar, BitkitBadge, BitkitBreadcrumb, BitkitButton, BitkitCalendar, BitkitCheckbox, BitkitCheckboxGroup, BitkitCloseButton, BitkitCodeSnippet, BitkitCollapsible, BitkitColorButton, BitkitCombobox_default as BitkitCombobox, BitkitControlButton, BitkitDataWidget, BitkitDefinitionTooltip, BitkitDialog_default as BitkitDialog, BitkitDialogBody, BitkitDialogButtons, BitkitDialogContent, BitkitDialogFormContent, BitkitDialogHeader, BitkitDialogRoot, BitkitDialogStep, BitkitDraggableCard, BitkitDrawer, BitkitEmptyState, BitkitExpandableCard, BitkitExpandableRow, BitkitField, BitkitFileInput, BitkitGroupHeading, BitkitIconButton, BitkitInlineLoading, BitkitLabel, BitkitLabelTooltip, BitkitLabeledData, BitkitLink, BitkitLinkButton, BitkitList_default as BitkitList, BitkitMarkdown, BitkitMarkdownCard, BitkitMultiselect_default as BitkitMultiselect, BitkitMultiselectMenu, BitkitNativeSelect, BitkitNoteCard, BitkitNumberInput, BitkitOverflowContent, BitkitOverflowTooltip, BitkitPageFooter_default as BitkitPageFooter, BitkitPagination, BitkitPaginationLoadMore, Provider as BitkitProvider, BitkitRadio, BitkitRadioGroup, BitkitRibbon, BitkitSearchInput, BitkitSectionHeading, BitkitSegmentedControl_default as BitkitSegmentedControl, BitkitSelect_default as BitkitSelect, BitkitSelectMenu, BitkitSelectMenuAction, BitkitSelectableTag_default as BitkitSelectableTag, BitkitSettingsCard_default as BitkitSettingsCard, BitkitSidebar_default as BitkitSidebar, BitkitSortableColumnHeader, BitkitSpinner, BitkitSplitButton_default as BitkitSplitButton, BitkitStat, BitkitSteps_default as BitkitSteps, BitkitStepsCard_default as BitkitStepsCard, BitkitSwitch, BitkitTabs, BitkitTag, BitkitTagsInput, BitkitTextArea, BitkitTextInput, BitkitToggleButton, BitkitTooltip, BitkitTreeView, IconAbortCircle, IconAbortCircleFilled, IconAddons, IconAgent, IconAnchor, IconAndroid, IconApp, IconAppSettings, IconAppStore, IconAppStoreColor, IconApple, IconArchive, IconArchiveDelete, IconArchiveRestore, IconArrowBackAndDown, IconArrowBackAndUp, IconArrowDown, IconArrowForwardAndDown, IconArrowForwardAndUp, IconArrowLeft, IconArrowNortheast, IconArrowNorthwest, IconArrowRight, IconArrowUp, IconArrowsHorizontal, IconArrowsVertical, IconAutomation, IconAws, IconAwsColor, IconBadge3RdParty, IconBadgeBitrise, IconBadgeUpgrade, IconBadgeVersionOk, IconBazel, IconBell, IconBitbot, IconBitbotError, IconBitbucket, IconBitbucketColor, IconBitbucketNeutral, IconBitbucketWhite, IconBlockCircle, IconBook, IconBoxArrowDown, IconBoxDot, IconBoxLinesOverflow, IconBoxLinesWrap, IconBranch, IconBrowserstackColor, IconBug, IconBuild, IconBuildCache, IconBuildCacheFilled, IconBuildEnvSetup, IconCalendar, IconChangePlan, IconChat, IconCheck, IconCheckCircle, IconCheckCircleFilled, IconChevronDown, IconChevronLeft, IconChevronRight, IconChevronUp, IconCi, IconCiFilled, IconCircle, IconCircleDashed, IconCircleHalfFilled, IconClaude, IconClaudeColor, IconClock, IconCode, IconCodePush, IconCodeSigning, IconCoffee, IconCommit, IconConfigure, IconConnectedAccounts, IconContainer, IconCopy, IconCordova, IconCpu, IconCreditcard, IconCredits, IconCross, IconCrossCircle, IconCrossCircleFilled, IconCrown, IconCycle, IconDashboard, IconDashboardFilled, IconDeployment, IconDetails, IconDoc, IconDollar, IconDot, IconDotnet, IconDotnetColor, IconDotnetText, IconDotnetTextColor, IconDoubleCircle, IconDownload, IconDragHandle, IconEc2Ami, IconEnterprise, IconErrorCircle, IconErrorCircleFilled, IconExpand, IconExtraBuildCapacity, IconEye, IconEyeSlash, IconFastlane, IconFileDoc, IconFilePdf, IconFilePlist, IconFileZip, IconFilter, IconFlag, IconFlutter, IconFolder, IconFullscreen, IconFullscreenExit, IconGauge, IconGit, IconGithub, IconGitlab, IconGitlabColor, IconGitlabWhite, IconGlobe, IconGo, IconGoogleColor, IconGooglePlay, IconGooglePlayColor, IconGradle, IconGroup, IconHashtag, IconHeadset, IconHeart, IconHistory, IconHourglass, IconImage, IconInfoCircle, IconInfoCircleFilled, IconInsights, IconInsightsFilled, IconInstall, IconInteraction, IconInvoice, IconIonic, IconJapanese, IconJava, IconJavaColor, IconJavaDuke, IconJavaDukeColor, IconKey, IconKotlin, IconKotlinColor, IconKotlinWhite, IconLaptop, IconLaunchdarkly, IconLegacyApp, IconLightbulb, IconLink, IconLinux, IconLock, IconLockOpen, IconLogin, IconLogout, IconMacos, IconMagicWand, IconMagnifier, IconMail, IconMedal, IconMemory, IconMenuGrid, IconMenuHamburger, IconMessage, IconMessageAlert, IconMessageQuestion, IconMicrophone, IconMinus, IconMinusCircle, IconMinusCircleFilled, IconMobile, IconMobileLandscape, IconMonitorChart, IconMoreHorizontal, IconMoreVertical, IconNews, IconNextjs, IconNodejs, IconOpenInNew, IconOther, IconOutsideContributor, IconOverview, IconPause, IconPencil, IconPeople, IconPercent, IconPerson, IconPersonWithDesk, IconPlay, IconPlus, IconPlusCircle, IconPlusCircleFilled, IconPower, IconProject, IconProjectSettings, IconPull, IconPush, IconPuzzle, IconPython, IconPythonColor, IconQuestionCircle, IconQuestionCircleFilled, IconReact, IconRefresh, IconRegex, IconRelease, IconReleaseFilled, IconRemoteAccess, IconReplace, IconResponsiveness, IconReviewerApproved, IconReviewerAssigned, IconReviewerRejected, IconRuby, IconRubyColor, IconSave, IconSecurityShield, IconSettings, IconSettingsFilled, IconShuffle, IconSiren, IconSkip, IconSkipCircle, IconSkipCircleFilled, IconSlack, IconSlackColor, IconSparkle, IconSparkleFilled, IconSpinnerOnDisabled, IconSpinnerPurple, IconSpinnerPurpleDouble, IconSpinnerWhite, IconStability, IconStack, IconStar, IconStep, IconStop, IconStopwatch, IconTag, IconTasks, IconTeams, IconTeamsColor, IconTemplateCode, IconTerminal, IconTestQuarantine, IconThemeDarkToggle, IconThumbDown, IconThumbUp, IconTools, IconTrash, IconTrigger, IconUbuntu, IconUbuntuColor, IconUnity3D, IconUpload, IconValidateShield, IconVideo, IconWarning, IconWarningYellow, IconWebUi, IconWebhooks, IconWorkflow, IconWorkflowFlow, IconXTwitter, IconXamarin, IconXcode, ResponsiveProvider, bitkitIcon, bitkitTheme as bitriseTheme, createBitkitToast, createTreeCollection, rem, useResponsive };
372
+ export { BitkitAccordion, BitkitActionBar, BitkitActionMenu, BitkitAlert, BitkitAvatar, BitkitBadge, BitkitBreadcrumb, BitkitButton, BitkitCalendar, BitkitCheckbox, BitkitCheckboxGroup, BitkitCloseButton, BitkitCodeSnippet, BitkitCollapsible, BitkitColorButton, BitkitCombobox_default as BitkitCombobox, BitkitControlButton, BitkitDataWidget, BitkitDefinitionTooltip, BitkitDialog_default as BitkitDialog, BitkitDialogBody, BitkitDialogButtons, BitkitDialogContent, BitkitDialogFormContent, BitkitDialogHeader, BitkitDialogRoot, BitkitDialogStep, BitkitDraggableCard, BitkitDrawer, BitkitEmptyState, BitkitExpandableCard, BitkitExpandableRow, BitkitField, BitkitFileInput, BitkitGroupHeading, BitkitIconButton, BitkitInlineLoading, BitkitLabel, BitkitLabelTooltip, BitkitLabeledData, BitkitLink, BitkitLinkButton, BitkitList_default as BitkitList, BitkitMarkdown, BitkitMarkdownCard, BitkitMultiselect_default as BitkitMultiselect, BitkitMultiselectMenu, BitkitNativeSelect, BitkitNoteCard, BitkitNumberInput, BitkitOverflowContent, BitkitOverflowTooltip, BitkitPageFooter_default as BitkitPageFooter, BitkitPagination, BitkitPaginationLoadMore, Provider as BitkitProvider, BitkitRadio, BitkitRadioGroup, BitkitRibbon, BitkitSearchInput, BitkitSectionHeading, BitkitSegmentedControl_default as BitkitSegmentedControl, BitkitSelect_default as BitkitSelect, BitkitSelectMenu, BitkitSelectMenuAction, BitkitSelectableTag_default as BitkitSelectableTag, BitkitSettingsCard_default as BitkitSettingsCard, BitkitSidebar_default as BitkitSidebar, BitkitSortableColumnHeader, BitkitSpinner, BitkitSplitButton_default as BitkitSplitButton, BitkitStat, BitkitSteps_default as BitkitSteps, BitkitStepsCard_default as BitkitStepsCard, BitkitSwitch, BitkitTabs, BitkitTag, BitkitTagsInput, BitkitTextArea, BitkitTextInput, BitkitToggleButton, BitkitTooltip, BitkitTreeView, IconAbortCircle, IconAbortCircleFilled, IconAddons, IconAgent, IconAnchor, IconAndroid, IconApp, IconAppSettings, IconAppStore, IconAppStoreColor, IconApple, IconArchive, IconArchiveDelete, IconArchiveRestore, IconArrowBackAndDown, IconArrowBackAndUp, IconArrowDown, IconArrowForwardAndDown, IconArrowForwardAndUp, IconArrowLeft, IconArrowNortheast, IconArrowNorthwest, IconArrowRight, IconArrowUp, IconArrowsHorizontal, IconArrowsVertical, IconAutomation, IconAws, IconAwsColor, IconBadge3RdParty, IconBadgeBitrise, IconBadgeUpgrade, IconBadgeVersionOk, IconBazel, IconBell, IconBitbot, IconBitbotError, IconBitbucket, IconBitbucketColor, IconBitbucketNeutral, IconBitbucketWhite, IconBlockCircle, IconBook, IconBoxArrowDown, IconBoxDot, IconBoxLinesOverflow, IconBoxLinesWrap, IconBranch, IconBrowserstackColor, IconBug, IconBuild, IconBuildCache, IconBuildCacheFilled, IconBuildEnvSetup, IconBuildHub, IconBuildHubFilled, IconCalendar, IconChangePlan, IconChat, IconCheck, IconCheckCircle, IconCheckCircleFilled, IconChevronDown, IconChevronLeft, IconChevronRight, IconChevronUp, IconCi, IconCiFilled, IconCircle, IconCircleDashed, IconCircleHalfFilled, IconClaude, IconClaudeColor, IconClock, IconCode, IconCodePush, IconCodeSigning, IconCoffee, IconCommit, IconConfigure, IconConnectedAccounts, IconContainer, IconCopy, IconCordova, IconCpu, IconCreditcard, IconCredits, IconCross, IconCrossCircle, IconCrossCircleFilled, IconCrown, IconCycle, IconDashboard, IconDashboardFilled, IconDeployment, IconDetails, IconDoc, IconDollar, IconDot, IconDotnet, IconDotnetColor, IconDotnetText, IconDotnetTextColor, IconDoubleCircle, IconDownload, IconDragHandle, IconEc2Ami, IconEnterprise, IconErrorCircle, IconErrorCircleFilled, IconExpand, IconExtraBuildCapacity, IconEye, IconEyeSlash, IconFastlane, IconFileDoc, IconFilePdf, IconFilePlist, IconFileYml, IconFileZip, IconFilter, IconFlag, IconFlutter, IconFolder, IconFullscreen, IconFullscreenExit, IconGauge, IconGit, IconGithub, IconGitlab, IconGitlabColor, IconGitlabWhite, IconGlobe, IconGo, IconGoogleColor, IconGooglePlay, IconGooglePlayColor, IconGradle, IconGroup, IconHashtag, IconHeadset, IconHeart, IconHistory, IconHourglass, IconImage, IconInfoCircle, IconInfoCircleFilled, IconInsights, IconInsightsFilled, IconInstall, IconInteraction, IconInvoice, IconIonic, IconJapanese, IconJava, IconJavaColor, IconJavaDuke, IconJavaDukeColor, IconKey, IconKotlin, IconKotlinColor, IconKotlinWhite, IconLaptop, IconLaunchdarkly, IconLegacyApp, IconLightbulb, IconLink, IconLinux, IconLock, IconLockOpen, IconLogin, IconLogout, IconMacos, IconMagicWand, IconMagnifier, IconMail, IconMedal, IconMemory, IconMenuGrid, IconMenuHamburger, IconMessage, IconMessageAlert, IconMessageQuestion, IconMicrophone, IconMinus, IconMinusCircle, IconMinusCircleFilled, IconMobile, IconMobileLandscape, IconMonitorChart, IconMoreHorizontal, IconMoreVertical, IconNews, IconNextjs, IconNodejs, IconOpenInNew, IconOther, IconOutsideContributor, IconOverview, IconPause, IconPencil, IconPeople, IconPercent, IconPerson, IconPersonWithDesk, IconPlay, IconPlus, IconPlusCircle, IconPlusCircleFilled, IconPower, IconProject, IconProjectSettings, IconPull, IconPush, IconPuzzle, IconPython, IconPythonColor, IconQuestionCircle, IconQuestionCircleFilled, IconReact, IconRefresh, IconRegex, IconRelease, IconReleaseFilled, IconRemoteAccess, IconReplace, IconResponsiveness, IconReviewerApproved, IconReviewerAssigned, IconReviewerRejected, IconRuby, IconRubyColor, IconSave, IconSecurityShield, IconSettings, IconSettingsFilled, IconShuffle, IconSiren, IconSkip, IconSkipCircle, IconSkipCircleFilled, IconSlack, IconSlackColor, IconSparkle, IconSparkleFilled, IconSpinnerOnDisabled, IconSpinnerPurple, IconSpinnerPurpleDouble, IconSpinnerWhite, IconStability, IconStack, IconStar, IconStep, IconStop, IconStopwatch, IconTag, IconTasks, IconTeams, IconTeamsColor, IconTemplateCode, IconTerminal, IconTestQuarantine, IconThemeDarkToggle, IconThumbDown, IconThumbUp, IconTools, IconTrash, IconTrigger, IconUbuntu, IconUbuntuColor, IconUnity3D, IconUpload, IconValidateShield, IconVideo, IconWarning, IconWarningYellow, IconWebUi, IconWebhooks, IconWorkflow, IconWorkflowFlow, IconXTwitter, IconXamarin, IconXcode, ResponsiveProvider, bitkitIcon, bitkitTheme as bitriseTheme, createBitkitToast, createTreeCollection, rem, useResponsive };
@@ -0,0 +1,21 @@
1
+ import { forwardRef } from "react";
2
+ import { jsx, jsxs } from "react/jsx-runtime";
3
+ //#region lib/svgs/16x16/icon-build-hub-16.svg?react
4
+ var SvgIconBuildHub16 = (props, ref) => /* @__PURE__ */ jsx("svg", {
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ width: 16,
7
+ height: 16,
8
+ fill: "none",
9
+ viewBox: "0 0 16 16",
10
+ ref,
11
+ ...props,
12
+ children: /* @__PURE__ */ jsxs("g", {
13
+ fill: "currentColor",
14
+ children: [/* @__PURE__ */ jsx("path", { d: "M9.334 13.333H8V12h1.334zM11.334 13.333H10V12h1.334zM13.334 13.333H12V12h1.334zM8 2c.946 0 1.762.388 2.338.88.288.246.529.529.7.821.168.285.295.62.295.966H10c0-.028-.016-.129-.11-.29A2.29 2.29 0 0 0 8 3.334c-1.857 0-3 1.583-3 3.334v.588l-.584.072v.001h.002l-.013.002-.062.01c-.057.011-.142.03-.244.058-.207.057-.47.152-.715.299-.244.146-.449.332-.58.563-.125.222-.208.53-.144.979.055.386.186.633.343.803.161.176.386.312.688.411.634.209 1.446.214 2.309.214V12c-.804 0-1.849.009-2.726-.28-.454-.15-.899-.39-1.254-.777-.36-.392-.592-.897-.68-1.515-.102-.718.023-1.327.304-1.824a2.9 2.9 0 0 1 1.054-1.05c.359-.216.722-.347.998-.427C3.918 4.047 5.414 2 8 2" }), /* @__PURE__ */ jsx("path", { d: "M8 12H6.667v-1.333H8zM14.667 12h-1.333v-1.333h1.333zM12 10.667H9.334V8H12zM8 10H6.667V8.667H8zM14.667 10h-1.333V8.667h1.333zM8 8H6.667V6.667H8zM14.667 8h-1.333V6.667h1.333zM9.334 6.667H8V5.333h1.334zM11.334 6.667H10V5.333h1.334zM13.334 6.667H12V5.333h1.334z" })]
15
+ })
16
+ });
17
+ var ForwardRef = forwardRef(SvgIconBuildHub16);
18
+ //#endregion
19
+ export { ForwardRef as default };
20
+
21
+ //# sourceMappingURL=icon-build-hub-16.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"icon-build-hub-16.js","names":[],"sources":["../../../lib/svgs/16x16/icon-build-hub-16.svg?react"],"sourcesContent":["import * as React from \"react\";\nimport { forwardRef } from \"react\";\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nconst SvgIconBuildHub16 = (props, ref) => /* @__PURE__ */ _jsx(\"svg\", {\n\txmlns: \"http://www.w3.org/2000/svg\",\n\twidth: 16,\n\theight: 16,\n\tfill: \"none\",\n\tviewBox: \"0 0 16 16\",\n\tref,\n\t...props,\n\tchildren: /* @__PURE__ */ _jsxs(\"g\", {\n\t\tfill: \"currentColor\",\n\t\tchildren: [/* @__PURE__ */ _jsx(\"path\", { d: \"M9.334 13.333H8V12h1.334zM11.334 13.333H10V12h1.334zM13.334 13.333H12V12h1.334zM8 2c.946 0 1.762.388 2.338.88.288.246.529.529.7.821.168.285.295.62.295.966H10c0-.028-.016-.129-.11-.29A2.29 2.29 0 0 0 8 3.334c-1.857 0-3 1.583-3 3.334v.588l-.584.072v.001h.002l-.013.002-.062.01c-.057.011-.142.03-.244.058-.207.057-.47.152-.715.299-.244.146-.449.332-.58.563-.125.222-.208.53-.144.979.055.386.186.633.343.803.161.176.386.312.688.411.634.209 1.446.214 2.309.214V12c-.804 0-1.849.009-2.726-.28-.454-.15-.899-.39-1.254-.777-.36-.392-.592-.897-.68-1.515-.102-.718.023-1.327.304-1.824a2.9 2.9 0 0 1 1.054-1.05c.359-.216.722-.347.998-.427C3.918 4.047 5.414 2 8 2\" }), /* @__PURE__ */ _jsx(\"path\", { d: \"M8 12H6.667v-1.333H8zM14.667 12h-1.333v-1.333h1.333zM12 10.667H9.334V8H12zM8 10H6.667V8.667H8zM14.667 10h-1.333V8.667h1.333zM8 8H6.667V6.667H8zM14.667 8h-1.333V6.667h1.333zM9.334 6.667H8V5.333h1.334zM11.334 6.667H10V5.333h1.334zM13.334 6.667H12V5.333h1.334z\" })]\n\t})\n});\nconst ForwardRef = forwardRef(SvgIconBuildHub16);\nexport default ForwardRef;\n"],"mappings":";;;AAGA,IAAM,qBAAqB,OAAO,QAAwB,oBAAK,OAAO;CACrE,OAAO;CACP,OAAO;CACP,QAAQ;CACR,MAAM;CACN,SAAS;CACT;CACA,GAAG;CACH,UAA0B,qBAAM,KAAK;EACpC,MAAM;EACN,UAAU,CAAiB,oBAAK,QAAQ,EAAE,GAAG,8oBAA8oB,CAAC,GAAmB,oBAAK,QAAQ,EAAE,GAAG,oQAAoQ,CAAC,CAAC;CACx+B,CAAC;AACF,CAAC;AACD,IAAM,aAAa,WAAW,iBAAiB"}
@@ -0,0 +1,25 @@
1
+ import { forwardRef } from "react";
2
+ import { jsx, jsxs } from "react/jsx-runtime";
3
+ //#region lib/svgs/16x16/icon-build-hub-filled-16.svg?react
4
+ var SvgIconBuildHubFilled16 = (props, ref) => /* @__PURE__ */ jsx("svg", {
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ width: 16,
7
+ height: 16,
8
+ fill: "none",
9
+ viewBox: "0 0 16 16",
10
+ ref,
11
+ ...props,
12
+ children: /* @__PURE__ */ jsxs("g", {
13
+ fill: "currentColor",
14
+ children: [/* @__PURE__ */ jsx("path", {
15
+ fillRule: "evenodd",
16
+ d: "M9.334 6.667H10V5.333h1.334v1.334H12V5.333h1.334v1.334h1.333V8h-1.333v.667h1.333V10h-1.333v.667h1.333V12h-1.333v1.333H12V12h-.666v1.333H10V12h-.666v1.333H8V12H6.667v-1.333H8V10H6.667V8.667H8V8H6.667V6.667H8V5.333h1.334zm0 1.333v2.667H12V8z",
17
+ clipRule: "evenodd"
18
+ }), /* @__PURE__ */ jsx("path", { d: "M8 2c.946 0 1.762.388 2.338.88.288.246.529.529.7.821.168.285.295.62.295.966H8q-2 0-2 2V12c-.804 0-1.849.009-2.726-.28-.454-.15-.899-.39-1.254-.777-.36-.392-.592-.897-.68-1.515-.102-.718.023-1.327.304-1.824a2.9 2.9 0 0 1 1.054-1.05c.359-.216.722-.347.998-.427C3.918 4.047 5.414 2 8 2" })]
19
+ })
20
+ });
21
+ var ForwardRef = forwardRef(SvgIconBuildHubFilled16);
22
+ //#endregion
23
+ export { ForwardRef as default };
24
+
25
+ //# sourceMappingURL=icon-build-hub-filled-16.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"icon-build-hub-filled-16.js","names":[],"sources":["../../../lib/svgs/16x16/icon-build-hub-filled-16.svg?react"],"sourcesContent":["import * as React from \"react\";\nimport { forwardRef } from \"react\";\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nconst SvgIconBuildHubFilled16 = (props, ref) => /* @__PURE__ */ _jsx(\"svg\", {\n\txmlns: \"http://www.w3.org/2000/svg\",\n\twidth: 16,\n\theight: 16,\n\tfill: \"none\",\n\tviewBox: \"0 0 16 16\",\n\tref,\n\t...props,\n\tchildren: /* @__PURE__ */ _jsxs(\"g\", {\n\t\tfill: \"currentColor\",\n\t\tchildren: [/* @__PURE__ */ _jsx(\"path\", {\n\t\t\tfillRule: \"evenodd\",\n\t\t\td: \"M9.334 6.667H10V5.333h1.334v1.334H12V5.333h1.334v1.334h1.333V8h-1.333v.667h1.333V10h-1.333v.667h1.333V12h-1.333v1.333H12V12h-.666v1.333H10V12h-.666v1.333H8V12H6.667v-1.333H8V10H6.667V8.667H8V8H6.667V6.667H8V5.333h1.334zm0 1.333v2.667H12V8z\",\n\t\t\tclipRule: \"evenodd\"\n\t\t}), /* @__PURE__ */ _jsx(\"path\", { d: \"M8 2c.946 0 1.762.388 2.338.88.288.246.529.529.7.821.168.285.295.62.295.966H8q-2 0-2 2V12c-.804 0-1.849.009-2.726-.28-.454-.15-.899-.39-1.254-.777-.36-.392-.592-.897-.68-1.515-.102-.718.023-1.327.304-1.824a2.9 2.9 0 0 1 1.054-1.05c.359-.216.722-.347.998-.427C3.918 4.047 5.414 2 8 2\" })]\n\t})\n});\nconst ForwardRef = forwardRef(SvgIconBuildHubFilled16);\nexport default ForwardRef;\n"],"mappings":";;;AAGA,IAAM,2BAA2B,OAAO,QAAwB,oBAAK,OAAO;CAC3E,OAAO;CACP,OAAO;CACP,QAAQ;CACR,MAAM;CACN,SAAS;CACT;CACA,GAAG;CACH,UAA0B,qBAAM,KAAK;EACpC,MAAM;EACN,UAAU,CAAiB,oBAAK,QAAQ;GACvC,UAAU;GACV,GAAG;GACH,UAAU;EACX,CAAC,GAAmB,oBAAK,QAAQ,EAAE,GAAG,6RAA6R,CAAC,CAAC;CACtU,CAAC;AACF,CAAC;AACD,IAAM,aAAa,WAAW,uBAAuB"}
@@ -12,13 +12,18 @@ var SvgIconFileDoc16 = (props, ref) => /* @__PURE__ */ jsx("svg", {
12
12
  children: /* @__PURE__ */ jsxs("g", {
13
13
  fill: "currentColor",
14
14
  children: [
15
- /* @__PURE__ */ jsx("path", { d: "M10.5 4.5v-2h-8v11h8v-2H12v2a1.5 1.5 0 0 1-1.5 1.5h-8A1.5 1.5 0 0 1 1 13.5v-11A1.5 1.5 0 0 1 2.5 1h8A1.5 1.5 0 0 1 12 2.5v2z" }),
15
+ /* @__PURE__ */ jsx("path", { d: "M10.504 1a1.5 1.5 0 0 1 1.5 1.5v2h-1.5v-2h-8v11h8v-2h1.5v2a1.5 1.5 0 0 1-1.5 1.5h-8a1.5 1.5 0 0 1-1.5-1.5v-11A1.5 1.5 0 0 1 2.35 1.008L2.504 1z" }),
16
16
  /* @__PURE__ */ jsx("path", {
17
17
  fillRule: "evenodd",
18
- d: "M5.054 6.133H3.75v3.334h1.304c1.098 0 1.853-.734 1.853-1.667s-.824-1.667-1.853-1.667m-.343.8h.343c.549 0 .96.334.96.867s-.411.867-.891.867H4.71zM9.24 9.6c1.098 0 1.922-.867 1.922-1.8S10.338 6 9.24 6 7.32 6.8 7.32 7.8s.823 1.8 1.921 1.8m0-.867c-.549 0-.96-.4-.96-.933s.411-.933.96-.933c.55 0 .961.4.961.933s-.412.933-.96.933",
18
+ d: "M9.269 6.005q.547 0 .964.233.418.23.657.637.238.402.238.93 0 .522-.238.93-.234.402-.652.636a1.97 1.97 0 0 1-.96.229q-.547 0-.97-.229a1.73 1.73 0 0 1-.656-.637 1.8 1.8 0 0 1-.238-.93q0-.525.238-.929.24-.408.657-.637.417-.233.96-.233m0 .846a.9.9 0 0 0-.473.124.86.86 0 0 0-.323.338 1 1 0 0 0-.115.492q0 .278.12.492t.323.339q.209.12.477.119a.9.9 0 0 0 .473-.12.87.87 0 0 0 .318-.338q.115-.215.115-.492 0-.279-.12-.492a.8.8 0 0 0-.323-.338.9.9 0 0 0-.472-.124",
19
19
  clipRule: "evenodd"
20
20
  }),
21
- /* @__PURE__ */ jsx("path", { d: "M13.495 8.733c-.549 0-.96-.4-.96-.933s.411-.933.96-.933c.55 0 .892.4.892.4l.55-.6S14.455 6 13.494 6c-1.098 0-1.921.8-1.921 1.8s.823 1.8 1.921 1.8c1.03 0 1.51-.667 1.51-.667l-.55-.6s-.342.4-.96.4" })
21
+ /* @__PURE__ */ jsx("path", { d: "M13.356 6q.402 0 .725.14.323.139.557.387.233.249.358.577l-.875.278a1 1 0 0 0-.179-.283.7.7 0 0 0-.258-.189.8.8 0 0 0-.328-.064.77.77 0 0 0-.433.124.83.83 0 0 0-.299.333q-.105.213-.104.497 0 .278.109.497a.9.9 0 0 0 .299.339q.193.12.442.119.194 0 .333-.065a.7.7 0 0 0 .244-.189 1.3 1.3 0 0 0 .179-.288l.875.278q-.12.329-.353.582a1.6 1.6 0 0 1-.562.388 1.9 1.9 0 0 1-.73.139 1.84 1.84 0 0 1-.925-.229 1.7 1.7 0 0 1-.627-.637 1.9 1.9 0 0 1-.229-.934q0-.527.229-.93.228-.408.627-.637A1.8 1.8 0 0 1 13.356 6" }),
22
+ /* @__PURE__ */ jsx("path", {
23
+ fillRule: "evenodd",
24
+ d: "M5.018 6.06q.571 0 1.01.223.441.225.69.617.248.389.249.9 0 .507-.25.9a1.7 1.7 0 0 1-.69.616q-.437.224-1.01.224H3.855V6.06zm-.245 2.61h.245q.218 0 .402-.065a1 1 0 0 0 .318-.178.8.8 0 0 0 .283-.627.804.804 0 0 0-.283-.626 1 1 0 0 0-.318-.18 1.2 1.2 0 0 0-.402-.064h-.245z",
25
+ clipRule: "evenodd"
26
+ })
22
27
  ]
23
28
  })
24
29
  });
@@ -1 +1 @@
1
- {"version":3,"file":"icon-file-doc-16.js","names":[],"sources":["../../../lib/svgs/16x16/icon-file-doc-16.svg?react"],"sourcesContent":["import * as React from \"react\";\nimport { forwardRef } from \"react\";\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nconst SvgIconFileDoc16 = (props, ref) => /* @__PURE__ */ _jsx(\"svg\", {\n\txmlns: \"http://www.w3.org/2000/svg\",\n\twidth: 16,\n\theight: 16,\n\tfill: \"none\",\n\tviewBox: \"0 0 16 16\",\n\tref,\n\t...props,\n\tchildren: /* @__PURE__ */ _jsxs(\"g\", {\n\t\tfill: \"currentColor\",\n\t\tchildren: [\n\t\t\t/* @__PURE__ */ _jsx(\"path\", { d: \"M10.5 4.5v-2h-8v11h8v-2H12v2a1.5 1.5 0 0 1-1.5 1.5h-8A1.5 1.5 0 0 1 1 13.5v-11A1.5 1.5 0 0 1 2.5 1h8A1.5 1.5 0 0 1 12 2.5v2z\" }),\n\t\t\t/* @__PURE__ */ _jsx(\"path\", {\n\t\t\t\tfillRule: \"evenodd\",\n\t\t\t\td: \"M5.054 6.133H3.75v3.334h1.304c1.098 0 1.853-.734 1.853-1.667s-.824-1.667-1.853-1.667m-.343.8h.343c.549 0 .96.334.96.867s-.411.867-.891.867H4.71zM9.24 9.6c1.098 0 1.922-.867 1.922-1.8S10.338 6 9.24 6 7.32 6.8 7.32 7.8s.823 1.8 1.921 1.8m0-.867c-.549 0-.96-.4-.96-.933s.411-.933.96-.933c.55 0 .961.4.961.933s-.412.933-.96.933\",\n\t\t\t\tclipRule: \"evenodd\"\n\t\t\t}),\n\t\t\t/* @__PURE__ */ _jsx(\"path\", { d: \"M13.495 8.733c-.549 0-.96-.4-.96-.933s.411-.933.96-.933c.55 0 .892.4.892.4l.55-.6S14.455 6 13.494 6c-1.098 0-1.921.8-1.921 1.8s.823 1.8 1.921 1.8c1.03 0 1.51-.667 1.51-.667l-.55-.6s-.342.4-.96.4\" })\n\t\t]\n\t})\n});\nconst ForwardRef = forwardRef(SvgIconFileDoc16);\nexport default ForwardRef;\n"],"mappings":";;;AAGA,IAAM,oBAAoB,OAAO,QAAwB,oBAAK,OAAO;CACpE,OAAO;CACP,OAAO;CACP,QAAQ;CACR,MAAM;CACN,SAAS;CACT;CACA,GAAG;CACH,UAA0B,qBAAM,KAAK;EACpC,MAAM;EACN,UAAU;GACO,oBAAK,QAAQ,EAAE,GAAG,+HAA+H,CAAC;GAClJ,oBAAK,QAAQ;IAC5B,UAAU;IACV,GAAG;IACH,UAAU;GACX,CAAC;GACe,oBAAK,QAAQ,EAAE,GAAG,qMAAqM,CAAC;EACzO;CACD,CAAC;AACF,CAAC;AACD,IAAM,aAAa,WAAW,gBAAgB"}
1
+ {"version":3,"file":"icon-file-doc-16.js","names":[],"sources":["../../../lib/svgs/16x16/icon-file-doc-16.svg?react"],"sourcesContent":["import * as React from \"react\";\nimport { forwardRef } from \"react\";\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nconst SvgIconFileDoc16 = (props, ref) => /* @__PURE__ */ _jsx(\"svg\", {\n\txmlns: \"http://www.w3.org/2000/svg\",\n\twidth: 16,\n\theight: 16,\n\tfill: \"none\",\n\tviewBox: \"0 0 16 16\",\n\tref,\n\t...props,\n\tchildren: /* @__PURE__ */ _jsxs(\"g\", {\n\t\tfill: \"currentColor\",\n\t\tchildren: [\n\t\t\t/* @__PURE__ */ _jsx(\"path\", { d: \"M10.504 1a1.5 1.5 0 0 1 1.5 1.5v2h-1.5v-2h-8v11h8v-2h1.5v2a1.5 1.5 0 0 1-1.5 1.5h-8a1.5 1.5 0 0 1-1.5-1.5v-11A1.5 1.5 0 0 1 2.35 1.008L2.504 1z\" }),\n\t\t\t/* @__PURE__ */ _jsx(\"path\", {\n\t\t\t\tfillRule: \"evenodd\",\n\t\t\t\td: \"M9.269 6.005q.547 0 .964.233.418.23.657.637.238.402.238.93 0 .522-.238.93-.234.402-.652.636a1.97 1.97 0 0 1-.96.229q-.547 0-.97-.229a1.73 1.73 0 0 1-.656-.637 1.8 1.8 0 0 1-.238-.93q0-.525.238-.929.24-.408.657-.637.417-.233.96-.233m0 .846a.9.9 0 0 0-.473.124.86.86 0 0 0-.323.338 1 1 0 0 0-.115.492q0 .278.12.492t.323.339q.209.12.477.119a.9.9 0 0 0 .473-.12.87.87 0 0 0 .318-.338q.115-.215.115-.492 0-.279-.12-.492a.8.8 0 0 0-.323-.338.9.9 0 0 0-.472-.124\",\n\t\t\t\tclipRule: \"evenodd\"\n\t\t\t}),\n\t\t\t/* @__PURE__ */ _jsx(\"path\", { d: \"M13.356 6q.402 0 .725.14.323.139.557.387.233.249.358.577l-.875.278a1 1 0 0 0-.179-.283.7.7 0 0 0-.258-.189.8.8 0 0 0-.328-.064.77.77 0 0 0-.433.124.83.83 0 0 0-.299.333q-.105.213-.104.497 0 .278.109.497a.9.9 0 0 0 .299.339q.193.12.442.119.194 0 .333-.065a.7.7 0 0 0 .244-.189 1.3 1.3 0 0 0 .179-.288l.875.278q-.12.329-.353.582a1.6 1.6 0 0 1-.562.388 1.9 1.9 0 0 1-.73.139 1.84 1.84 0 0 1-.925-.229 1.7 1.7 0 0 1-.627-.637 1.9 1.9 0 0 1-.229-.934q0-.527.229-.93.228-.408.627-.637A1.8 1.8 0 0 1 13.356 6\" }),\n\t\t\t/* @__PURE__ */ _jsx(\"path\", {\n\t\t\t\tfillRule: \"evenodd\",\n\t\t\t\td: \"M5.018 6.06q.571 0 1.01.223.441.225.69.617.248.389.249.9 0 .507-.25.9a1.7 1.7 0 0 1-.69.616q-.437.224-1.01.224H3.855V6.06zm-.245 2.61h.245q.218 0 .402-.065a1 1 0 0 0 .318-.178.8.8 0 0 0 .283-.627.804.804 0 0 0-.283-.626 1 1 0 0 0-.318-.18 1.2 1.2 0 0 0-.402-.064h-.245z\",\n\t\t\t\tclipRule: \"evenodd\"\n\t\t\t})\n\t\t]\n\t})\n});\nconst ForwardRef = forwardRef(SvgIconFileDoc16);\nexport default ForwardRef;\n"],"mappings":";;;AAGA,IAAM,oBAAoB,OAAO,QAAwB,oBAAK,OAAO;CACpE,OAAO;CACP,OAAO;CACP,QAAQ;CACR,MAAM;CACN,SAAS;CACT;CACA,GAAG;CACH,UAA0B,qBAAM,KAAK;EACpC,MAAM;EACN,UAAU;GACO,oBAAK,QAAQ,EAAE,GAAG,kJAAkJ,CAAC;GACrK,oBAAK,QAAQ;IAC5B,UAAU;IACV,GAAG;IACH,UAAU;GACX,CAAC;GACe,oBAAK,QAAQ,EAAE,GAAG,wfAAwf,CAAC;GAC3gB,oBAAK,QAAQ;IAC5B,UAAU;IACV,GAAG;IACH,UAAU;GACX,CAAC;EACF;CACD,CAAC;AACF,CAAC;AACD,IAAM,aAAa,WAAW,gBAAgB"}
@@ -12,13 +12,13 @@ var SvgIconFilePdf16 = (props, ref) => /* @__PURE__ */ jsx("svg", {
12
12
  children: /* @__PURE__ */ jsxs("g", {
13
13
  fill: "currentColor",
14
14
  children: [
15
- /* @__PURE__ */ jsx("path", { d: "M10.5 4.5v-2h-8v11h8v-2H12v2a1.5 1.5 0 0 1-1.5 1.5h-8A1.5 1.5 0 0 1 1 13.5v-11A1.5 1.5 0 0 1 2.5 1h8A1.5 1.5 0 0 1 12 2.5v2z" }),
15
+ /* @__PURE__ */ jsx("path", { d: "M10.502 1a1.5 1.5 0 0 1 1.5 1.5v2h-1.5v-2h-8v11h8v-2h1.5v2a1.5 1.5 0 0 1-1.5 1.5h-8a1.5 1.5 0 0 1-1.5-1.5v-11a1.5 1.5 0 0 1 1.346-1.492L2.501 1z" }),
16
16
  /* @__PURE__ */ jsx("path", {
17
17
  fillRule: "evenodd",
18
- d: "M6.14 6H4.5v3.5h.984v-1h.657c.853 0 1.378-.5 1.378-1.25S6.929 6 6.14 6m-.656.875h.591c.263 0 .46.125.394.375 0 .188-.131.375-.394.375h-.59zM9.619 6H8.175v3.5h1.444c1.181 0 1.969-.75 1.969-1.75S10.734 6 9.618 6m-.394.875h.394c.525 0 .918.438.918.938s-.393.875-.918.875h-.394z",
18
+ d: "M6.333 5.95q.406 0 .72.16a1.2 1.2 0 0 1 .668 1.095q0 .37-.18.658-.174.283-.488.448-.314.159-.72.159h-.54v1.08h-.952v-3.6zm-.54 1.646h.514q.195 0 .314-.109a.36.36 0 0 0 .124-.282.35.35 0 0 0-.124-.278.45.45 0 0 0-.314-.108h-.514zM9.67 5.95q.593 0 1.044.232.459.23.715.637.258.402.258.931 0 .525-.258.93a1.77 1.77 0 0 1-.715.638q-.452.232-1.044.232H8.467v-3.6zm-.252 2.7h.252q.226 0 .417-.067t.33-.185a.83.83 0 0 0 .293-.648.83.83 0 0 0-.293-.648 1 1 0 0 0-.33-.185 1.3 1.3 0 0 0-.417-.067h-.252z",
19
19
  clipRule: "evenodd"
20
20
  }),
21
- /* @__PURE__ */ jsx("path", { d: "M15 6h-2.822v3.5h.984V8.25h1.444v-.812h-1.444v-.563H15z" })
21
+ /* @__PURE__ */ jsx("path", { d: "M14.999 6.824h-1.512v.525h1.182v.874h-1.182V9.55h-.952v-3.6h2.464z" })
22
22
  ]
23
23
  })
24
24
  });
@@ -1 +1 @@
1
- {"version":3,"file":"icon-file-pdf-16.js","names":[],"sources":["../../../lib/svgs/16x16/icon-file-pdf-16.svg?react"],"sourcesContent":["import * as React from \"react\";\nimport { forwardRef } from \"react\";\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nconst SvgIconFilePdf16 = (props, ref) => /* @__PURE__ */ _jsx(\"svg\", {\n\txmlns: \"http://www.w3.org/2000/svg\",\n\twidth: 16,\n\theight: 16,\n\tfill: \"none\",\n\tviewBox: \"0 0 16 16\",\n\tref,\n\t...props,\n\tchildren: /* @__PURE__ */ _jsxs(\"g\", {\n\t\tfill: \"currentColor\",\n\t\tchildren: [\n\t\t\t/* @__PURE__ */ _jsx(\"path\", { d: \"M10.5 4.5v-2h-8v11h8v-2H12v2a1.5 1.5 0 0 1-1.5 1.5h-8A1.5 1.5 0 0 1 1 13.5v-11A1.5 1.5 0 0 1 2.5 1h8A1.5 1.5 0 0 1 12 2.5v2z\" }),\n\t\t\t/* @__PURE__ */ _jsx(\"path\", {\n\t\t\t\tfillRule: \"evenodd\",\n\t\t\t\td: \"M6.14 6H4.5v3.5h.984v-1h.657c.853 0 1.378-.5 1.378-1.25S6.929 6 6.14 6m-.656.875h.591c.263 0 .46.125.394.375 0 .188-.131.375-.394.375h-.59zM9.619 6H8.175v3.5h1.444c1.181 0 1.969-.75 1.969-1.75S10.734 6 9.618 6m-.394.875h.394c.525 0 .918.438.918.938s-.393.875-.918.875h-.394z\",\n\t\t\t\tclipRule: \"evenodd\"\n\t\t\t}),\n\t\t\t/* @__PURE__ */ _jsx(\"path\", { d: \"M15 6h-2.822v3.5h.984V8.25h1.444v-.812h-1.444v-.563H15z\" })\n\t\t]\n\t})\n});\nconst ForwardRef = forwardRef(SvgIconFilePdf16);\nexport default ForwardRef;\n"],"mappings":";;;AAGA,IAAM,oBAAoB,OAAO,QAAwB,oBAAK,OAAO;CACpE,OAAO;CACP,OAAO;CACP,QAAQ;CACR,MAAM;CACN,SAAS;CACT;CACA,GAAG;CACH,UAA0B,qBAAM,KAAK;EACpC,MAAM;EACN,UAAU;GACO,oBAAK,QAAQ,EAAE,GAAG,+HAA+H,CAAC;GAClJ,oBAAK,QAAQ;IAC5B,UAAU;IACV,GAAG;IACH,UAAU;GACX,CAAC;GACe,oBAAK,QAAQ,EAAE,GAAG,0DAA0D,CAAC;EAC9F;CACD,CAAC;AACF,CAAC;AACD,IAAM,aAAa,WAAW,gBAAgB"}
1
+ {"version":3,"file":"icon-file-pdf-16.js","names":[],"sources":["../../../lib/svgs/16x16/icon-file-pdf-16.svg?react"],"sourcesContent":["import * as React from \"react\";\nimport { forwardRef } from \"react\";\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nconst SvgIconFilePdf16 = (props, ref) => /* @__PURE__ */ _jsx(\"svg\", {\n\txmlns: \"http://www.w3.org/2000/svg\",\n\twidth: 16,\n\theight: 16,\n\tfill: \"none\",\n\tviewBox: \"0 0 16 16\",\n\tref,\n\t...props,\n\tchildren: /* @__PURE__ */ _jsxs(\"g\", {\n\t\tfill: \"currentColor\",\n\t\tchildren: [\n\t\t\t/* @__PURE__ */ _jsx(\"path\", { d: \"M10.502 1a1.5 1.5 0 0 1 1.5 1.5v2h-1.5v-2h-8v11h8v-2h1.5v2a1.5 1.5 0 0 1-1.5 1.5h-8a1.5 1.5 0 0 1-1.5-1.5v-11a1.5 1.5 0 0 1 1.346-1.492L2.501 1z\" }),\n\t\t\t/* @__PURE__ */ _jsx(\"path\", {\n\t\t\t\tfillRule: \"evenodd\",\n\t\t\t\td: \"M6.333 5.95q.406 0 .72.16a1.2 1.2 0 0 1 .668 1.095q0 .37-.18.658-.174.283-.488.448-.314.159-.72.159h-.54v1.08h-.952v-3.6zm-.54 1.646h.514q.195 0 .314-.109a.36.36 0 0 0 .124-.282.35.35 0 0 0-.124-.278.45.45 0 0 0-.314-.108h-.514zM9.67 5.95q.593 0 1.044.232.459.23.715.637.258.402.258.931 0 .525-.258.93a1.77 1.77 0 0 1-.715.638q-.452.232-1.044.232H8.467v-3.6zm-.252 2.7h.252q.226 0 .417-.067t.33-.185a.83.83 0 0 0 .293-.648.83.83 0 0 0-.293-.648 1 1 0 0 0-.33-.185 1.3 1.3 0 0 0-.417-.067h-.252z\",\n\t\t\t\tclipRule: \"evenodd\"\n\t\t\t}),\n\t\t\t/* @__PURE__ */ _jsx(\"path\", { d: \"M14.999 6.824h-1.512v.525h1.182v.874h-1.182V9.55h-.952v-3.6h2.464z\" })\n\t\t]\n\t})\n});\nconst ForwardRef = forwardRef(SvgIconFilePdf16);\nexport default ForwardRef;\n"],"mappings":";;;AAGA,IAAM,oBAAoB,OAAO,QAAwB,oBAAK,OAAO;CACpE,OAAO;CACP,OAAO;CACP,QAAQ;CACR,MAAM;CACN,SAAS;CACT;CACA,GAAG;CACH,UAA0B,qBAAM,KAAK;EACpC,MAAM;EACN,UAAU;GACO,oBAAK,QAAQ,EAAE,GAAG,mJAAmJ,CAAC;GACtK,oBAAK,QAAQ;IAC5B,UAAU;IACV,GAAG;IACH,UAAU;GACX,CAAC;GACe,oBAAK,QAAQ,EAAE,GAAG,qEAAqE,CAAC;EACzG;CACD,CAAC;AACF,CAAC;AACD,IAAM,aAAa,WAAW,gBAAgB"}
@@ -12,14 +12,14 @@ var SvgIconFilePlist16 = (props, ref) => /* @__PURE__ */ jsx("svg", {
12
12
  children: /* @__PURE__ */ jsxs("g", {
13
13
  fill: "currentColor",
14
14
  children: [
15
- /* @__PURE__ */ jsx("path", { d: "M10.5 4.5v-2h-8v11h8v-2H12v2a1.5 1.5 0 0 1-1.5 1.5h-8A1.5 1.5 0 0 1 1 13.5v-11A1.5 1.5 0 0 1 2.5 1h8A1.5 1.5 0 0 1 12 2.5v2z" }),
16
- /* @__PURE__ */ jsx("path", { d: "M11.122 7.763c.24.075.433.136.433.284 0 .162-.142.304-.365.304-.364 0-.608-.304-.608-.304l-.446.467S10.522 9 11.272 9c.709 0 1.135-.426 1.135-.932 0-.613-.5-.77-.885-.892-.239-.075-.433-.136-.433-.284 0-.122.122-.243.304-.243.28 0 .466.223.466.223l.446-.467S12.001 6 11.312 6c-.649 0-1.074.426-1.074.872 0 .612.5.77.884.89" }),
15
+ /* @__PURE__ */ jsx("path", { d: "M10.499 1a1.5 1.5 0 0 1 1.5 1.5v2h-1.5v-2h-8v11h8v-2h1.5v2a1.5 1.5 0 0 1-1.5 1.5h-8a1.5 1.5 0 0 1-1.5-1.5v-11a1.5 1.5 0 0 1 1.346-1.492L2.5 1z" }),
16
+ /* @__PURE__ */ jsx("path", { d: "M11.284 6q.269 0 .473.07a.9.9 0 0 1 .354.224q.15.149.248.394l-.745.22a.36.36 0 0 0-.107-.166.3.3 0 0 0-.223-.083.34.34 0 0 0-.217.062q-.073.062-.073.182 0 .075.061.133.062.054.175.083l.433.111a.89.89 0 0 1 .692.88q0 .285-.13.484a.8.8 0 0 1-.367.302q-.24.104-.574.104-.2 0-.392-.054a1.5 1.5 0 0 1-.35-.157 1.1 1.1 0 0 1-.257-.225.56.56 0 0 1-.122-.268l.75-.212q.036.104.126.179.09.07.232.078a.3.3 0 0 0 .2-.062.2.2 0 0 0 .09-.175.2.2 0 0 0-.053-.131.28.28 0 0 0-.16-.096l-.427-.111a1.1 1.1 0 0 1-.38-.18.8.8 0 0 1-.24-.293.9.9 0 0 1-.082-.39q0-.426.278-.663.281-.24.787-.24" }),
17
17
  /* @__PURE__ */ jsx("path", {
18
18
  fillRule: "evenodd",
19
- d: "M4.877 6.081H3.6V8.92h.77v-.851h.507c.628 0 1.054-.426 1.054-.994 0-.567-.426-.993-1.054-.993m-.507.69h.467c.182 0 .324.141.324.303s-.142.304-.324.304H4.37z",
19
+ d: "M5.18 6.05q.323 0 .572.128a.972.972 0 0 1 .53.883 1 1 0 0 1-.144.53 1 1 0 0 1-.386.36 1.2 1.2 0 0 1-.572.13h-.427v.87h-.754V6.05zm-.427 1.326h.407a.35.35 0 0 0 .249-.087.3.3 0 0 0 .098-.228.29.29 0 0 0-.098-.224.35.35 0 0 0-.25-.087h-.406z",
20
20
  clipRule: "evenodd"
21
21
  }),
22
- /* @__PURE__ */ jsx("path", { d: "M6.455 8.919h2.027v-.69H7.225V6.082h-.77zM8.924 8.919V6.08h.77V8.92zM12.646 6.081h2.351v.69h-.79v2.148h-.77V6.77h-.79z" })
22
+ /* @__PURE__ */ jsx("path", { d: "M7.382 8.246h1.173v.704H6.628v-2.9h.754zM9.716 8.95h-.754v-2.9h.754zM14.999 6.754h-.803V8.95h-.754V6.754h-.808V6.05H15z" })
23
23
  ]
24
24
  })
25
25
  });
@@ -1 +1 @@
1
- {"version":3,"file":"icon-file-plist-16.js","names":[],"sources":["../../../lib/svgs/16x16/icon-file-plist-16.svg?react"],"sourcesContent":["import * as React from \"react\";\nimport { forwardRef } from \"react\";\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nconst SvgIconFilePlist16 = (props, ref) => /* @__PURE__ */ _jsx(\"svg\", {\n\txmlns: \"http://www.w3.org/2000/svg\",\n\twidth: 16,\n\theight: 16,\n\tfill: \"none\",\n\tviewBox: \"0 0 16 16\",\n\tref,\n\t...props,\n\tchildren: /* @__PURE__ */ _jsxs(\"g\", {\n\t\tfill: \"currentColor\",\n\t\tchildren: [\n\t\t\t/* @__PURE__ */ _jsx(\"path\", { d: \"M10.5 4.5v-2h-8v11h8v-2H12v2a1.5 1.5 0 0 1-1.5 1.5h-8A1.5 1.5 0 0 1 1 13.5v-11A1.5 1.5 0 0 1 2.5 1h8A1.5 1.5 0 0 1 12 2.5v2z\" }),\n\t\t\t/* @__PURE__ */ _jsx(\"path\", { d: \"M11.122 7.763c.24.075.433.136.433.284 0 .162-.142.304-.365.304-.364 0-.608-.304-.608-.304l-.446.467S10.522 9 11.272 9c.709 0 1.135-.426 1.135-.932 0-.613-.5-.77-.885-.892-.239-.075-.433-.136-.433-.284 0-.122.122-.243.304-.243.28 0 .466.223.466.223l.446-.467S12.001 6 11.312 6c-.649 0-1.074.426-1.074.872 0 .612.5.77.884.89\" }),\n\t\t\t/* @__PURE__ */ _jsx(\"path\", {\n\t\t\t\tfillRule: \"evenodd\",\n\t\t\t\td: \"M4.877 6.081H3.6V8.92h.77v-.851h.507c.628 0 1.054-.426 1.054-.994 0-.567-.426-.993-1.054-.993m-.507.69h.467c.182 0 .324.141.324.303s-.142.304-.324.304H4.37z\",\n\t\t\t\tclipRule: \"evenodd\"\n\t\t\t}),\n\t\t\t/* @__PURE__ */ _jsx(\"path\", { d: \"M6.455 8.919h2.027v-.69H7.225V6.082h-.77zM8.924 8.919V6.08h.77V8.92zM12.646 6.081h2.351v.69h-.79v2.148h-.77V6.77h-.79z\" })\n\t\t]\n\t})\n});\nconst ForwardRef = forwardRef(SvgIconFilePlist16);\nexport default ForwardRef;\n"],"mappings":";;;AAGA,IAAM,sBAAsB,OAAO,QAAwB,oBAAK,OAAO;CACtE,OAAO;CACP,OAAO;CACP,QAAQ;CACR,MAAM;CACN,SAAS;CACT;CACA,GAAG;CACH,UAA0B,qBAAM,KAAK;EACpC,MAAM;EACN,UAAU;GACO,oBAAK,QAAQ,EAAE,GAAG,+HAA+H,CAAC;GAClJ,oBAAK,QAAQ,EAAE,GAAG,qUAAqU,CAAC;GACxV,oBAAK,QAAQ;IAC5B,UAAU;IACV,GAAG;IACH,UAAU;GACX,CAAC;GACe,oBAAK,QAAQ,EAAE,GAAG,yHAAyH,CAAC;EAC7J;CACD,CAAC;AACF,CAAC;AACD,IAAM,aAAa,WAAW,kBAAkB"}
1
+ {"version":3,"file":"icon-file-plist-16.js","names":[],"sources":["../../../lib/svgs/16x16/icon-file-plist-16.svg?react"],"sourcesContent":["import * as React from \"react\";\nimport { forwardRef } from \"react\";\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nconst SvgIconFilePlist16 = (props, ref) => /* @__PURE__ */ _jsx(\"svg\", {\n\txmlns: \"http://www.w3.org/2000/svg\",\n\twidth: 16,\n\theight: 16,\n\tfill: \"none\",\n\tviewBox: \"0 0 16 16\",\n\tref,\n\t...props,\n\tchildren: /* @__PURE__ */ _jsxs(\"g\", {\n\t\tfill: \"currentColor\",\n\t\tchildren: [\n\t\t\t/* @__PURE__ */ _jsx(\"path\", { d: \"M10.499 1a1.5 1.5 0 0 1 1.5 1.5v2h-1.5v-2h-8v11h8v-2h1.5v2a1.5 1.5 0 0 1-1.5 1.5h-8a1.5 1.5 0 0 1-1.5-1.5v-11a1.5 1.5 0 0 1 1.346-1.492L2.5 1z\" }),\n\t\t\t/* @__PURE__ */ _jsx(\"path\", { d: \"M11.284 6q.269 0 .473.07a.9.9 0 0 1 .354.224q.15.149.248.394l-.745.22a.36.36 0 0 0-.107-.166.3.3 0 0 0-.223-.083.34.34 0 0 0-.217.062q-.073.062-.073.182 0 .075.061.133.062.054.175.083l.433.111a.89.89 0 0 1 .692.88q0 .285-.13.484a.8.8 0 0 1-.367.302q-.24.104-.574.104-.2 0-.392-.054a1.5 1.5 0 0 1-.35-.157 1.1 1.1 0 0 1-.257-.225.56.56 0 0 1-.122-.268l.75-.212q.036.104.126.179.09.07.232.078a.3.3 0 0 0 .2-.062.2.2 0 0 0 .09-.175.2.2 0 0 0-.053-.131.28.28 0 0 0-.16-.096l-.427-.111a1.1 1.1 0 0 1-.38-.18.8.8 0 0 1-.24-.293.9.9 0 0 1-.082-.39q0-.426.278-.663.281-.24.787-.24\" }),\n\t\t\t/* @__PURE__ */ _jsx(\"path\", {\n\t\t\t\tfillRule: \"evenodd\",\n\t\t\t\td: \"M5.18 6.05q.323 0 .572.128a.972.972 0 0 1 .53.883 1 1 0 0 1-.144.53 1 1 0 0 1-.386.36 1.2 1.2 0 0 1-.572.13h-.427v.87h-.754V6.05zm-.427 1.326h.407a.35.35 0 0 0 .249-.087.3.3 0 0 0 .098-.228.29.29 0 0 0-.098-.224.35.35 0 0 0-.25-.087h-.406z\",\n\t\t\t\tclipRule: \"evenodd\"\n\t\t\t}),\n\t\t\t/* @__PURE__ */ _jsx(\"path\", { d: \"M7.382 8.246h1.173v.704H6.628v-2.9h.754zM9.716 8.95h-.754v-2.9h.754zM14.999 6.754h-.803V8.95h-.754V6.754h-.808V6.05H15z\" })\n\t\t]\n\t})\n});\nconst ForwardRef = forwardRef(SvgIconFilePlist16);\nexport default ForwardRef;\n"],"mappings":";;;AAGA,IAAM,sBAAsB,OAAO,QAAwB,oBAAK,OAAO;CACtE,OAAO;CACP,OAAO;CACP,QAAQ;CACR,MAAM;CACN,SAAS;CACT;CACA,GAAG;CACH,UAA0B,qBAAM,KAAK;EACpC,MAAM;EACN,UAAU;GACO,oBAAK,QAAQ,EAAE,GAAG,iJAAiJ,CAAC;GACpK,oBAAK,QAAQ,EAAE,GAAG,+jBAA+jB,CAAC;GACllB,oBAAK,QAAQ;IAC5B,UAAU;IACV,GAAG;IACH,UAAU;GACX,CAAC;GACe,oBAAK,QAAQ,EAAE,GAAG,0HAA0H,CAAC;EAC9J;CACD,CAAC;AACF,CAAC;AACD,IAAM,aAAa,WAAW,kBAAkB"}
@@ -0,0 +1,21 @@
1
+ import { forwardRef } from "react";
2
+ import { jsx, jsxs } from "react/jsx-runtime";
3
+ //#region lib/svgs/16x16/icon-file-yml-16.svg?react
4
+ var SvgIconFileYml16 = (props, ref) => /* @__PURE__ */ jsx("svg", {
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ width: 16,
7
+ height: 16,
8
+ fill: "none",
9
+ viewBox: "0 0 16 16",
10
+ ref,
11
+ ...props,
12
+ children: /* @__PURE__ */ jsxs("g", {
13
+ fill: "currentColor",
14
+ children: [/* @__PURE__ */ jsx("path", { d: "M10.5 1A1.5 1.5 0 0 1 12 2.5v2h-1.5v-2h-8v11h8v-2H12v2a1.5 1.5 0 0 1-1.5 1.5h-8A1.5 1.5 0 0 1 1 13.5v-11a1.5 1.5 0 0 1 1.347-1.492L2.5 1z" }), /* @__PURE__ */ jsx("path", { d: "M5.48 7.096 6.12 6h1.05L5.945 8.007V9.5h-.924V8.017L3.79 6h1.05zM9.763 7.25 10.607 6h1.026v3.5h-.925V7.43l-.94 1.37-.95-1.37V9.5h-.925V6h1.025zM13.559 8.65h1.44v.85h-2.365V6h.925z" })]
15
+ })
16
+ });
17
+ var ForwardRef = forwardRef(SvgIconFileYml16);
18
+ //#endregion
19
+ export { ForwardRef as default };
20
+
21
+ //# sourceMappingURL=icon-file-yml-16.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"icon-file-yml-16.js","names":[],"sources":["../../../lib/svgs/16x16/icon-file-yml-16.svg?react"],"sourcesContent":["import * as React from \"react\";\nimport { forwardRef } from \"react\";\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nconst SvgIconFileYml16 = (props, ref) => /* @__PURE__ */ _jsx(\"svg\", {\n\txmlns: \"http://www.w3.org/2000/svg\",\n\twidth: 16,\n\theight: 16,\n\tfill: \"none\",\n\tviewBox: \"0 0 16 16\",\n\tref,\n\t...props,\n\tchildren: /* @__PURE__ */ _jsxs(\"g\", {\n\t\tfill: \"currentColor\",\n\t\tchildren: [/* @__PURE__ */ _jsx(\"path\", { d: \"M10.5 1A1.5 1.5 0 0 1 12 2.5v2h-1.5v-2h-8v11h8v-2H12v2a1.5 1.5 0 0 1-1.5 1.5h-8A1.5 1.5 0 0 1 1 13.5v-11a1.5 1.5 0 0 1 1.347-1.492L2.5 1z\" }), /* @__PURE__ */ _jsx(\"path\", { d: \"M5.48 7.096 6.12 6h1.05L5.945 8.007V9.5h-.924V8.017L3.79 6h1.05zM9.763 7.25 10.607 6h1.026v3.5h-.925V7.43l-.94 1.37-.95-1.37V9.5h-.925V6h1.025zM13.559 8.65h1.44v.85h-2.365V6h.925z\" })]\n\t})\n});\nconst ForwardRef = forwardRef(SvgIconFileYml16);\nexport default ForwardRef;\n"],"mappings":";;;AAGA,IAAM,oBAAoB,OAAO,QAAwB,oBAAK,OAAO;CACpE,OAAO;CACP,OAAO;CACP,QAAQ;CACR,MAAM;CACN,SAAS;CACT;CACA,GAAG;CACH,UAA0B,qBAAM,KAAK;EACpC,MAAM;EACN,UAAU,CAAiB,oBAAK,QAAQ,EAAE,GAAG,4IAA4I,CAAC,GAAmB,oBAAK,QAAQ,EAAE,GAAG,sLAAsL,CAAC,CAAC;CACxZ,CAAC;AACF,CAAC;AACD,IAAM,aAAa,WAAW,gBAAgB"}
@@ -12,11 +12,11 @@ var SvgIconFileZip16 = (props, ref) => /* @__PURE__ */ jsx("svg", {
12
12
  children: /* @__PURE__ */ jsxs("g", {
13
13
  fill: "currentColor",
14
14
  children: [
15
- /* @__PURE__ */ jsx("path", { d: "M10.5 4.5v-2h-8v11h8v-2H12v2a1.5 1.5 0 0 1-1.5 1.5h-8A1.5 1.5 0 0 1 1 13.5v-11A1.5 1.5 0 0 1 2.5 1h8A1.5 1.5 0 0 1 12 2.5v2z" }),
16
- /* @__PURE__ */ jsx("path", { d: "M6.305 6.85H7.78l-1.55 1.8v.85h2.85v-.85h-1.6l1.55-1.8V6H6.305zM10.038 6v3.5h.95V6z" }),
15
+ /* @__PURE__ */ jsx("path", { d: "M10.496 1a1.5 1.5 0 0 1 1.5 1.5v2h-1.5v-2h-8v11h8v-2h1.5v2a1.5 1.5 0 0 1-1.5 1.5h-8a1.5 1.5 0 0 1-1.5-1.5v-11a1.5 1.5 0 0 1 1.347-1.492L2.496 1z" }),
16
+ /* @__PURE__ */ jsx("path", { d: "m9.426 6.875-1.61 1.75h1.595V9.5H6.607v-.875l1.61-1.75H6.62V6h2.805zM11.201 9.5h-.924V6h.924z" }),
17
17
  /* @__PURE__ */ jsx("path", {
18
18
  fillRule: "evenodd",
19
- d: "M12.122 6h1.575c.775 0 1.3.525 1.3 1.225s-.525 1.225-1.3 1.225h-.625V9.5h-.95zm1.525.85h-.575v.75h.575c.225 0 .4-.175.4-.375s-.175-.375-.4-.375",
19
+ d: "M13.65 6q.395 0 .7.155A1.17 1.17 0 0 1 15 7.22q0 .36-.175.64a1.2 1.2 0 0 1-.475.435 1.5 1.5 0 0 1-.7.155h-.525V9.5H12.2V6zm-.525 1.6h.5a.44.44 0 0 0 .305-.105q.12-.105.12-.275 0-.165-.12-.27a.44.44 0 0 0-.305-.105h-.5z",
20
20
  clipRule: "evenodd"
21
21
  })
22
22
  ]
@@ -1 +1 @@
1
- {"version":3,"file":"icon-file-zip-16.js","names":[],"sources":["../../../lib/svgs/16x16/icon-file-zip-16.svg?react"],"sourcesContent":["import * as React from \"react\";\nimport { forwardRef } from \"react\";\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nconst SvgIconFileZip16 = (props, ref) => /* @__PURE__ */ _jsx(\"svg\", {\n\txmlns: \"http://www.w3.org/2000/svg\",\n\twidth: 16,\n\theight: 16,\n\tfill: \"none\",\n\tviewBox: \"0 0 16 16\",\n\tref,\n\t...props,\n\tchildren: /* @__PURE__ */ _jsxs(\"g\", {\n\t\tfill: \"currentColor\",\n\t\tchildren: [\n\t\t\t/* @__PURE__ */ _jsx(\"path\", { d: \"M10.5 4.5v-2h-8v11h8v-2H12v2a1.5 1.5 0 0 1-1.5 1.5h-8A1.5 1.5 0 0 1 1 13.5v-11A1.5 1.5 0 0 1 2.5 1h8A1.5 1.5 0 0 1 12 2.5v2z\" }),\n\t\t\t/* @__PURE__ */ _jsx(\"path\", { d: \"M6.305 6.85H7.78l-1.55 1.8v.85h2.85v-.85h-1.6l1.55-1.8V6H6.305zM10.038 6v3.5h.95V6z\" }),\n\t\t\t/* @__PURE__ */ _jsx(\"path\", {\n\t\t\t\tfillRule: \"evenodd\",\n\t\t\t\td: \"M12.122 6h1.575c.775 0 1.3.525 1.3 1.225s-.525 1.225-1.3 1.225h-.625V9.5h-.95zm1.525.85h-.575v.75h.575c.225 0 .4-.175.4-.375s-.175-.375-.4-.375\",\n\t\t\t\tclipRule: \"evenodd\"\n\t\t\t})\n\t\t]\n\t})\n});\nconst ForwardRef = forwardRef(SvgIconFileZip16);\nexport default ForwardRef;\n"],"mappings":";;;AAGA,IAAM,oBAAoB,OAAO,QAAwB,oBAAK,OAAO;CACpE,OAAO;CACP,OAAO;CACP,QAAQ;CACR,MAAM;CACN,SAAS;CACT;CACA,GAAG;CACH,UAA0B,qBAAM,KAAK;EACpC,MAAM;EACN,UAAU;GACO,oBAAK,QAAQ,EAAE,GAAG,+HAA+H,CAAC;GAClJ,oBAAK,QAAQ,EAAE,GAAG,sFAAsF,CAAC;GACzG,oBAAK,QAAQ;IAC5B,UAAU;IACV,GAAG;IACH,UAAU;GACX,CAAC;EACF;CACD,CAAC;AACF,CAAC;AACD,IAAM,aAAa,WAAW,gBAAgB"}
1
+ {"version":3,"file":"icon-file-zip-16.js","names":[],"sources":["../../../lib/svgs/16x16/icon-file-zip-16.svg?react"],"sourcesContent":["import * as React from \"react\";\nimport { forwardRef } from \"react\";\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nconst SvgIconFileZip16 = (props, ref) => /* @__PURE__ */ _jsx(\"svg\", {\n\txmlns: \"http://www.w3.org/2000/svg\",\n\twidth: 16,\n\theight: 16,\n\tfill: \"none\",\n\tviewBox: \"0 0 16 16\",\n\tref,\n\t...props,\n\tchildren: /* @__PURE__ */ _jsxs(\"g\", {\n\t\tfill: \"currentColor\",\n\t\tchildren: [\n\t\t\t/* @__PURE__ */ _jsx(\"path\", { d: \"M10.496 1a1.5 1.5 0 0 1 1.5 1.5v2h-1.5v-2h-8v11h8v-2h1.5v2a1.5 1.5 0 0 1-1.5 1.5h-8a1.5 1.5 0 0 1-1.5-1.5v-11a1.5 1.5 0 0 1 1.347-1.492L2.496 1z\" }),\n\t\t\t/* @__PURE__ */ _jsx(\"path\", { d: \"m9.426 6.875-1.61 1.75h1.595V9.5H6.607v-.875l1.61-1.75H6.62V6h2.805zM11.201 9.5h-.924V6h.924z\" }),\n\t\t\t/* @__PURE__ */ _jsx(\"path\", {\n\t\t\t\tfillRule: \"evenodd\",\n\t\t\t\td: \"M13.65 6q.395 0 .7.155A1.17 1.17 0 0 1 15 7.22q0 .36-.175.64a1.2 1.2 0 0 1-.475.435 1.5 1.5 0 0 1-.7.155h-.525V9.5H12.2V6zm-.525 1.6h.5a.44.44 0 0 0 .305-.105q.12-.105.12-.275 0-.165-.12-.27a.44.44 0 0 0-.305-.105h-.5z\",\n\t\t\t\tclipRule: \"evenodd\"\n\t\t\t})\n\t\t]\n\t})\n});\nconst ForwardRef = forwardRef(SvgIconFileZip16);\nexport default ForwardRef;\n"],"mappings":";;;AAGA,IAAM,oBAAoB,OAAO,QAAwB,oBAAK,OAAO;CACpE,OAAO;CACP,OAAO;CACP,QAAQ;CACR,MAAM;CACN,SAAS;CACT;CACA,GAAG;CACH,UAA0B,qBAAM,KAAK;EACpC,MAAM;EACN,UAAU;GACO,oBAAK,QAAQ,EAAE,GAAG,mJAAmJ,CAAC;GACtK,oBAAK,QAAQ,EAAE,GAAG,gGAAgG,CAAC;GACnH,oBAAK,QAAQ;IAC5B,UAAU;IACV,GAAG;IACH,UAAU;GACX,CAAC;EACF;CACD,CAAC;AACF,CAAC;AACD,IAAM,aAAa,WAAW,gBAAgB"}
@@ -6,12 +6,12 @@ var SvgIconSkip16 = (props, ref) => /* @__PURE__ */ jsx("svg", {
6
6
  width: 16,
7
7
  height: 16,
8
8
  fill: "none",
9
- viewBox: "2 2 12 12",
9
+ viewBox: "0 0 16 16",
10
10
  ref,
11
11
  ...props,
12
12
  children: /* @__PURE__ */ jsxs("g", {
13
13
  fill: "currentColor",
14
- children: [/* @__PURE__ */ jsx("path", { d: "M5.03 4.97 8.06 8l-3.03 3.03-1.06-1.06L5.94 8 3.97 6.03z" }), /* @__PURE__ */ jsx("path", { d: "M9.03 11.03 12.06 8 9.03 4.97 7.97 6.03 9.94 8 7.97 9.97z" })]
14
+ children: [/* @__PURE__ */ jsx("path", { d: "m8.06 8-3.03 3.03-1.06-1.06L5.94 8 3.97 6.03l1.06-1.06z" }), /* @__PURE__ */ jsx("path", { d: "m12.06 8-3.03 3.03-1.06-1.06L9.94 8 7.97 6.03l1.06-1.06z" })]
15
15
  })
16
16
  });
17
17
  var ForwardRef = forwardRef(SvgIconSkip16);
@@ -1 +1 @@
1
- {"version":3,"file":"icon-skip-16.js","names":[],"sources":["../../../lib/svgs/16x16/icon-skip-16.svg?react"],"sourcesContent":["import * as React from \"react\";\nimport { forwardRef } from \"react\";\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nconst SvgIconSkip16 = (props, ref) => /* @__PURE__ */ _jsx(\"svg\", {\n\txmlns: \"http://www.w3.org/2000/svg\",\n\twidth: 16,\n\theight: 16,\n\tfill: \"none\",\n\tviewBox: \"2 2 12 12\",\n\tref,\n\t...props,\n\tchildren: /* @__PURE__ */ _jsxs(\"g\", {\n\t\tfill: \"currentColor\",\n\t\tchildren: [/* @__PURE__ */ _jsx(\"path\", { d: \"M5.03 4.97 8.06 8l-3.03 3.03-1.06-1.06L5.94 8 3.97 6.03z\" }), /* @__PURE__ */ _jsx(\"path\", { d: \"M9.03 11.03 12.06 8 9.03 4.97 7.97 6.03 9.94 8 7.97 9.97z\" })]\n\t})\n});\nconst ForwardRef = forwardRef(SvgIconSkip16);\nexport default ForwardRef;\n"],"mappings":";;;AAGA,IAAM,iBAAiB,OAAO,QAAwB,oBAAK,OAAO;CACjE,OAAO;CACP,OAAO;CACP,QAAQ;CACR,MAAM;CACN,SAAS;CACT;CACA,GAAG;CACH,UAA0B,qBAAM,KAAK;EACpC,MAAM;EACN,UAAU,CAAiB,oBAAK,QAAQ,EAAE,GAAG,2DAA2D,CAAC,GAAmB,oBAAK,QAAQ,EAAE,GAAG,4DAA4D,CAAC,CAAC;CAC7M,CAAC;AACF,CAAC;AACD,IAAM,aAAa,WAAW,aAAa"}
1
+ {"version":3,"file":"icon-skip-16.js","names":[],"sources":["../../../lib/svgs/16x16/icon-skip-16.svg?react"],"sourcesContent":["import * as React from \"react\";\nimport { forwardRef } from \"react\";\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nconst SvgIconSkip16 = (props, ref) => /* @__PURE__ */ _jsx(\"svg\", {\n\txmlns: \"http://www.w3.org/2000/svg\",\n\twidth: 16,\n\theight: 16,\n\tfill: \"none\",\n\tviewBox: \"0 0 16 16\",\n\tref,\n\t...props,\n\tchildren: /* @__PURE__ */ _jsxs(\"g\", {\n\t\tfill: \"currentColor\",\n\t\tchildren: [/* @__PURE__ */ _jsx(\"path\", { d: \"m8.06 8-3.03 3.03-1.06-1.06L5.94 8 3.97 6.03l1.06-1.06z\" }), /* @__PURE__ */ _jsx(\"path\", { d: \"m12.06 8-3.03 3.03-1.06-1.06L9.94 8 7.97 6.03l1.06-1.06z\" })]\n\t})\n});\nconst ForwardRef = forwardRef(SvgIconSkip16);\nexport default ForwardRef;\n"],"mappings":";;;AAGA,IAAM,iBAAiB,OAAO,QAAwB,oBAAK,OAAO;CACjE,OAAO;CACP,OAAO;CACP,QAAQ;CACR,MAAM;CACN,SAAS;CACT;CACA,GAAG;CACH,UAA0B,qBAAM,KAAK;EACpC,MAAM;EACN,UAAU,CAAiB,oBAAK,QAAQ,EAAE,GAAG,0DAA0D,CAAC,GAAmB,oBAAK,QAAQ,EAAE,GAAG,2DAA2D,CAAC,CAAC;CAC3M,CAAC;AACF,CAAC;AACD,IAAM,aAAa,WAAW,aAAa"}
@@ -0,0 +1,21 @@
1
+ import { forwardRef } from "react";
2
+ import { jsx, jsxs } from "react/jsx-runtime";
3
+ //#region lib/svgs/24x24/icon-build-hub-24.svg?react
4
+ var SvgIconBuildHub24 = (props, ref) => /* @__PURE__ */ jsx("svg", {
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ width: 24,
7
+ height: 24,
8
+ fill: "none",
9
+ viewBox: "0 0 24 24",
10
+ ref,
11
+ ...props,
12
+ children: /* @__PURE__ */ jsxs("g", {
13
+ fill: "currentColor",
14
+ children: [/* @__PURE__ */ jsx("path", { d: "M14 20h-2v-2h2zM17 20h-2v-2h2zM20 20h-2v-2h2zM12 3c1.42 0 2.643.582 3.506 1.32.433.369.794.793 1.052 1.232.251.426.441.93.441 1.448h-2c0-.042-.023-.193-.165-.434a3 3 0 0 0-.627-.725C13.642 5.358 12.865 5 12 5c-2.784 0-4.5 2.374-4.5 5v.883l-.876.108.001.001h.002l-.018.003-.093.016a5 5 0 0 0-.366.086 4.4 4.4 0 0 0-1.072.448c-.367.22-.674.498-.87.846-.189.332-.313.795-.217 1.467.082.579.28.95.514 1.205.242.264.58.467 1.033.617.95.313 2.168.32 3.462.32v2c-1.204 0-2.772.013-4.088-.42-.681-.225-1.348-.584-1.881-1.165-.54-.589-.887-1.347-1.02-2.273-.154-1.077.034-1.99.455-2.736.413-.73 1.012-1.234 1.582-1.576a6.4 6.4 0 0 1 1.497-.64C5.878 6.071 8.121 3 12 3" }), /* @__PURE__ */ jsx("path", { d: "M12 18h-2v-2h2zM22 18h-2v-2h2zM18 16h-4v-4h4zM12 15h-2v-2h2zM22 15h-2v-2h2zM12 12h-2v-2h2zM22 12h-2v-2h2zM14 10h-2V8h2zM17 10h-2V8h2zM20 10h-2V8h2z" })]
15
+ })
16
+ });
17
+ var ForwardRef = forwardRef(SvgIconBuildHub24);
18
+ //#endregion
19
+ export { ForwardRef as default };
20
+
21
+ //# sourceMappingURL=icon-build-hub-24.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"icon-build-hub-24.js","names":[],"sources":["../../../lib/svgs/24x24/icon-build-hub-24.svg?react"],"sourcesContent":["import * as React from \"react\";\nimport { forwardRef } from \"react\";\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nconst SvgIconBuildHub24 = (props, ref) => /* @__PURE__ */ _jsx(\"svg\", {\n\txmlns: \"http://www.w3.org/2000/svg\",\n\twidth: 24,\n\theight: 24,\n\tfill: \"none\",\n\tviewBox: \"0 0 24 24\",\n\tref,\n\t...props,\n\tchildren: /* @__PURE__ */ _jsxs(\"g\", {\n\t\tfill: \"currentColor\",\n\t\tchildren: [/* @__PURE__ */ _jsx(\"path\", { d: \"M14 20h-2v-2h2zM17 20h-2v-2h2zM20 20h-2v-2h2zM12 3c1.42 0 2.643.582 3.506 1.32.433.369.794.793 1.052 1.232.251.426.441.93.441 1.448h-2c0-.042-.023-.193-.165-.434a3 3 0 0 0-.627-.725C13.642 5.358 12.865 5 12 5c-2.784 0-4.5 2.374-4.5 5v.883l-.876.108.001.001h.002l-.018.003-.093.016a5 5 0 0 0-.366.086 4.4 4.4 0 0 0-1.072.448c-.367.22-.674.498-.87.846-.189.332-.313.795-.217 1.467.082.579.28.95.514 1.205.242.264.58.467 1.033.617.95.313 2.168.32 3.462.32v2c-1.204 0-2.772.013-4.088-.42-.681-.225-1.348-.584-1.881-1.165-.54-.589-.887-1.347-1.02-2.273-.154-1.077.034-1.99.455-2.736.413-.73 1.012-1.234 1.582-1.576a6.4 6.4 0 0 1 1.497-.64C5.878 6.071 8.121 3 12 3\" }), /* @__PURE__ */ _jsx(\"path\", { d: \"M12 18h-2v-2h2zM22 18h-2v-2h2zM18 16h-4v-4h4zM12 15h-2v-2h2zM22 15h-2v-2h2zM12 12h-2v-2h2zM22 12h-2v-2h2zM14 10h-2V8h2zM17 10h-2V8h2zM20 10h-2V8h2z\" })]\n\t})\n});\nconst ForwardRef = forwardRef(SvgIconBuildHub24);\nexport default ForwardRef;\n"],"mappings":";;;AAGA,IAAM,qBAAqB,OAAO,QAAwB,oBAAK,OAAO;CACrE,OAAO;CACP,OAAO;CACP,QAAQ;CACR,MAAM;CACN,SAAS;CACT;CACA,GAAG;CACH,UAA0B,qBAAM,KAAK;EACpC,MAAM;EACN,UAAU,CAAiB,oBAAK,QAAQ,EAAE,GAAG,qpBAAqpB,CAAC,GAAmB,oBAAK,QAAQ,EAAE,GAAG,sJAAsJ,CAAC,CAAC;CACj4B,CAAC;AACF,CAAC;AACD,IAAM,aAAa,WAAW,iBAAiB"}
@@ -0,0 +1,25 @@
1
+ import { forwardRef } from "react";
2
+ import { jsx, jsxs } from "react/jsx-runtime";
3
+ //#region lib/svgs/24x24/icon-build-hub-filled-24.svg?react
4
+ var SvgIconBuildHubFilled24 = (props, ref) => /* @__PURE__ */ jsx("svg", {
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ width: 24,
7
+ height: 24,
8
+ fill: "none",
9
+ viewBox: "0 0 24 24",
10
+ ref,
11
+ ...props,
12
+ children: /* @__PURE__ */ jsxs("g", {
13
+ fill: "currentColor",
14
+ children: [/* @__PURE__ */ jsx("path", {
15
+ fillRule: "evenodd",
16
+ d: "M14 10h1V8h2v2h1V8h2v2h2v2h-2v1h2v2h-2v1h2v2h-2v2h-2v-2h-1v2h-2v-2h-1v2h-2v-2h-2v-2h2v-1h-2v-2h2v-1h-2v-2h2V8h2zm0 2v4h4v-4z",
17
+ clipRule: "evenodd"
18
+ }), /* @__PURE__ */ jsx("path", { d: "M12 3c1.42 0 2.643.582 3.506 1.32.433.369.794.793 1.052 1.232.251.426.442.93.442 1.448h-5q-3 0-3 3v8c-1.205 0-2.773.013-4.09-.42-.68-.225-1.347-.584-1.88-1.165-.54-.589-.887-1.347-1.02-2.273-.154-1.077.034-1.99.455-2.736.413-.73 1.012-1.234 1.582-1.576a6.4 6.4 0 0 1 1.497-.64C5.878 6.071 8.121 3 12 3" })]
19
+ })
20
+ });
21
+ var ForwardRef = forwardRef(SvgIconBuildHubFilled24);
22
+ //#endregion
23
+ export { ForwardRef as default };
24
+
25
+ //# sourceMappingURL=icon-build-hub-filled-24.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"icon-build-hub-filled-24.js","names":[],"sources":["../../../lib/svgs/24x24/icon-build-hub-filled-24.svg?react"],"sourcesContent":["import * as React from \"react\";\nimport { forwardRef } from \"react\";\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nconst SvgIconBuildHubFilled24 = (props, ref) => /* @__PURE__ */ _jsx(\"svg\", {\n\txmlns: \"http://www.w3.org/2000/svg\",\n\twidth: 24,\n\theight: 24,\n\tfill: \"none\",\n\tviewBox: \"0 0 24 24\",\n\tref,\n\t...props,\n\tchildren: /* @__PURE__ */ _jsxs(\"g\", {\n\t\tfill: \"currentColor\",\n\t\tchildren: [/* @__PURE__ */ _jsx(\"path\", {\n\t\t\tfillRule: \"evenodd\",\n\t\t\td: \"M14 10h1V8h2v2h1V8h2v2h2v2h-2v1h2v2h-2v1h2v2h-2v2h-2v-2h-1v2h-2v-2h-1v2h-2v-2h-2v-2h2v-1h-2v-2h2v-1h-2v-2h2V8h2zm0 2v4h4v-4z\",\n\t\t\tclipRule: \"evenodd\"\n\t\t}), /* @__PURE__ */ _jsx(\"path\", { d: \"M12 3c1.42 0 2.643.582 3.506 1.32.433.369.794.793 1.052 1.232.251.426.442.93.442 1.448h-5q-3 0-3 3v8c-1.205 0-2.773.013-4.09-.42-.68-.225-1.347-.584-1.88-1.165-.54-.589-.887-1.347-1.02-2.273-.154-1.077.034-1.99.455-2.736.413-.73 1.012-1.234 1.582-1.576a6.4 6.4 0 0 1 1.497-.64C5.878 6.071 8.121 3 12 3\" })]\n\t})\n});\nconst ForwardRef = forwardRef(SvgIconBuildHubFilled24);\nexport default ForwardRef;\n"],"mappings":";;;AAGA,IAAM,2BAA2B,OAAO,QAAwB,oBAAK,OAAO;CAC3E,OAAO;CACP,OAAO;CACP,QAAQ;CACR,MAAM;CACN,SAAS;CACT;CACA,GAAG;CACH,UAA0B,qBAAM,KAAK;EACpC,MAAM;EACN,UAAU,CAAiB,oBAAK,QAAQ;GACvC,UAAU;GACV,GAAG;GACH,UAAU;EACX,CAAC,GAAmB,oBAAK,QAAQ,EAAE,GAAG,gTAAgT,CAAC,CAAC;CACzV,CAAC;AACF,CAAC;AACD,IAAM,aAAa,WAAW,uBAAuB"}
@@ -12,13 +12,18 @@ var SvgIconFileDoc24 = (props, ref) => /* @__PURE__ */ jsx("svg", {
12
12
  children: /* @__PURE__ */ jsxs("g", {
13
13
  fill: "currentColor",
14
14
  children: [
15
- /* @__PURE__ */ jsx("path", { d: "M4 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-3h-2v3H4V4h12v3h2V4a2 2 0 0 0-2-2z" }),
15
+ /* @__PURE__ */ jsx("path", { d: "M16 2a2 2 0 0 1 2 2v3h-2V4H4v16h12v-3h2v3a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2z" }),
16
16
  /* @__PURE__ */ jsx("path", {
17
17
  fillRule: "evenodd",
18
- d: "M7.854 9.685H6v4.63h1.854c1.56 0 2.634-1.019 2.634-2.315s-1.17-2.315-2.634-2.315m-.488 1.111h.488c.78 0 1.366.463 1.366 1.204s-.586 1.204-1.269 1.204h-.585zM13.805 14.5c1.56 0 2.732-1.204 2.732-2.5s-1.171-2.5-2.732-2.5-2.732 1.111-2.732 2.5 1.17 2.5 2.732 2.5m0-1.204c-.78 0-1.366-.555-1.366-1.296 0-.74.585-1.296 1.366-1.296.78 0 1.366.555 1.366 1.296 0 .74-.586 1.296-1.366 1.296",
18
+ d: "M13.772 9.507q.785 0 1.384.324a2.38 2.38 0 0 1 1.285 2.176q0 .725-.342 1.292a2.4 2.4 0 0 1-.936.884q-.6.317-1.377.317-.785 0-1.391-.317a2.45 2.45 0 0 1-.943-.884 2.45 2.45 0 0 1-.343-1.292q0-.732.343-1.291.343-.567.943-.885.599-.324 1.377-.324m0 1.174q-.38 0-.678.173-.293.165-.464.47a1.4 1.4 0 0 0-.164.683q0 .387.17.683.172.297.465.47.3.165.685.166.386 0 .678-.166.293-.173.457-.47a1.4 1.4 0 0 0 .164-.683q0-.387-.17-.684a1.15 1.15 0 0 0-.465-.47 1.3 1.3 0 0 0-.678-.172",
19
19
  clipRule: "evenodd"
20
20
  }),
21
- /* @__PURE__ */ jsx("path", { d: "M19.854 13.296c-.78 0-1.366-.555-1.366-1.296 0-.74.585-1.296 1.366-1.296.78 0 1.268.555 1.268.555l.78-.833S21.22 9.5 19.854 9.5c-1.561 0-2.732 1.111-2.732 2.5s1.17 2.5 2.732 2.5c1.463 0 2.146-.926 2.146-.926l-.78-.833s-.488.555-1.366.555" })
21
+ /* @__PURE__ */ jsx("path", { d: "M19.638 9.5q.577 0 1.042.193a2.37 2.37 0 0 1 1.313 1.34l-1.257.387a1.4 1.4 0 0 0-.256-.394 1.04 1.04 0 0 0-.372-.262 1.2 1.2 0 0 0-.47-.09q-.35 0-.621.173a1.17 1.17 0 0 0-.428.463q-.15.296-.15.69 0 .387.157.69.157.297.427.47.279.165.636.166.28 0 .479-.09.206-.096.35-.262.15-.173.256-.4L22 12.96a2.4 2.4 0 0 1-.507.808q-.335.345-.806.539a2.7 2.7 0 0 1-1.05.193q-.748 0-1.326-.317a2.4 2.4 0 0 1-.9-.884A2.54 2.54 0 0 1 17.083 12q0-.732.328-1.291.329-.566.9-.885a2.67 2.67 0 0 1 1.327-.324" }),
22
+ /* @__PURE__ */ jsx("path", {
23
+ fillRule: "evenodd",
24
+ d: "M7.67 9.583q.82 0 1.45.31.634.312.991.857.357.54.357 1.25 0 .705-.357 1.25-.357.547-.992.856-.628.312-1.45.311H6V9.583zm-.35 3.626h.35q.315 0 .578-.09.264-.09.457-.249.193-.158.3-.38A1.1 1.1 0 0 0 9.11 12q0-.27-.106-.49a1.1 1.1 0 0 0-.3-.38 1.4 1.4 0 0 0-.457-.25 1.8 1.8 0 0 0-.578-.089h-.35z",
25
+ clipRule: "evenodd"
26
+ })
22
27
  ]
23
28
  })
24
29
  });
@@ -1 +1 @@
1
- {"version":3,"file":"icon-file-doc-24.js","names":[],"sources":["../../../lib/svgs/24x24/icon-file-doc-24.svg?react"],"sourcesContent":["import * as React from \"react\";\nimport { forwardRef } from \"react\";\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nconst SvgIconFileDoc24 = (props, ref) => /* @__PURE__ */ _jsx(\"svg\", {\n\txmlns: \"http://www.w3.org/2000/svg\",\n\twidth: 24,\n\theight: 24,\n\tfill: \"none\",\n\tviewBox: \"0 0 24 24\",\n\tref,\n\t...props,\n\tchildren: /* @__PURE__ */ _jsxs(\"g\", {\n\t\tfill: \"currentColor\",\n\t\tchildren: [\n\t\t\t/* @__PURE__ */ _jsx(\"path\", { d: \"M4 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-3h-2v3H4V4h12v3h2V4a2 2 0 0 0-2-2z\" }),\n\t\t\t/* @__PURE__ */ _jsx(\"path\", {\n\t\t\t\tfillRule: \"evenodd\",\n\t\t\t\td: \"M7.854 9.685H6v4.63h1.854c1.56 0 2.634-1.019 2.634-2.315s-1.17-2.315-2.634-2.315m-.488 1.111h.488c.78 0 1.366.463 1.366 1.204s-.586 1.204-1.269 1.204h-.585zM13.805 14.5c1.56 0 2.732-1.204 2.732-2.5s-1.171-2.5-2.732-2.5-2.732 1.111-2.732 2.5 1.17 2.5 2.732 2.5m0-1.204c-.78 0-1.366-.555-1.366-1.296 0-.74.585-1.296 1.366-1.296.78 0 1.366.555 1.366 1.296 0 .74-.586 1.296-1.366 1.296\",\n\t\t\t\tclipRule: \"evenodd\"\n\t\t\t}),\n\t\t\t/* @__PURE__ */ _jsx(\"path\", { d: \"M19.854 13.296c-.78 0-1.366-.555-1.366-1.296 0-.74.585-1.296 1.366-1.296.78 0 1.268.555 1.268.555l.78-.833S21.22 9.5 19.854 9.5c-1.561 0-2.732 1.111-2.732 2.5s1.17 2.5 2.732 2.5c1.463 0 2.146-.926 2.146-.926l-.78-.833s-.488.555-1.366.555\" })\n\t\t]\n\t})\n});\nconst ForwardRef = forwardRef(SvgIconFileDoc24);\nexport default ForwardRef;\n"],"mappings":";;;AAGA,IAAM,oBAAoB,OAAO,QAAwB,oBAAK,OAAO;CACpE,OAAO;CACP,OAAO;CACP,QAAQ;CACR,MAAM;CACN,SAAS;CACT;CACA,GAAG;CACH,UAA0B,qBAAM,KAAK;EACpC,MAAM;EACN,UAAU;GACO,oBAAK,QAAQ,EAAE,GAAG,2FAA2F,CAAC;GAC9G,oBAAK,QAAQ;IAC5B,UAAU;IACV,GAAG;IACH,UAAU;GACX,CAAC;GACe,oBAAK,QAAQ,EAAE,GAAG,gPAAgP,CAAC;EACpR;CACD,CAAC;AACF,CAAC;AACD,IAAM,aAAa,WAAW,gBAAgB"}
1
+ {"version":3,"file":"icon-file-doc-24.js","names":[],"sources":["../../../lib/svgs/24x24/icon-file-doc-24.svg?react"],"sourcesContent":["import * as React from \"react\";\nimport { forwardRef } from \"react\";\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nconst SvgIconFileDoc24 = (props, ref) => /* @__PURE__ */ _jsx(\"svg\", {\n\txmlns: \"http://www.w3.org/2000/svg\",\n\twidth: 24,\n\theight: 24,\n\tfill: \"none\",\n\tviewBox: \"0 0 24 24\",\n\tref,\n\t...props,\n\tchildren: /* @__PURE__ */ _jsxs(\"g\", {\n\t\tfill: \"currentColor\",\n\t\tchildren: [\n\t\t\t/* @__PURE__ */ _jsx(\"path\", { d: \"M16 2a2 2 0 0 1 2 2v3h-2V4H4v16h12v-3h2v3a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2z\" }),\n\t\t\t/* @__PURE__ */ _jsx(\"path\", {\n\t\t\t\tfillRule: \"evenodd\",\n\t\t\t\td: \"M13.772 9.507q.785 0 1.384.324a2.38 2.38 0 0 1 1.285 2.176q0 .725-.342 1.292a2.4 2.4 0 0 1-.936.884q-.6.317-1.377.317-.785 0-1.391-.317a2.45 2.45 0 0 1-.943-.884 2.45 2.45 0 0 1-.343-1.292q0-.732.343-1.291.343-.567.943-.885.599-.324 1.377-.324m0 1.174q-.38 0-.678.173-.293.165-.464.47a1.4 1.4 0 0 0-.164.683q0 .387.17.683.172.297.465.47.3.165.685.166.386 0 .678-.166.293-.173.457-.47a1.4 1.4 0 0 0 .164-.683q0-.387-.17-.684a1.15 1.15 0 0 0-.465-.47 1.3 1.3 0 0 0-.678-.172\",\n\t\t\t\tclipRule: \"evenodd\"\n\t\t\t}),\n\t\t\t/* @__PURE__ */ _jsx(\"path\", { d: \"M19.638 9.5q.577 0 1.042.193a2.37 2.37 0 0 1 1.313 1.34l-1.257.387a1.4 1.4 0 0 0-.256-.394 1.04 1.04 0 0 0-.372-.262 1.2 1.2 0 0 0-.47-.09q-.35 0-.621.173a1.17 1.17 0 0 0-.428.463q-.15.296-.15.69 0 .387.157.69.157.297.427.47.279.165.636.166.28 0 .479-.09.206-.096.35-.262.15-.173.256-.4L22 12.96a2.4 2.4 0 0 1-.507.808q-.335.345-.806.539a2.7 2.7 0 0 1-1.05.193q-.748 0-1.326-.317a2.4 2.4 0 0 1-.9-.884A2.54 2.54 0 0 1 17.083 12q0-.732.328-1.291.329-.566.9-.885a2.67 2.67 0 0 1 1.327-.324\" }),\n\t\t\t/* @__PURE__ */ _jsx(\"path\", {\n\t\t\t\tfillRule: \"evenodd\",\n\t\t\t\td: \"M7.67 9.583q.82 0 1.45.31.634.312.991.857.357.54.357 1.25 0 .705-.357 1.25-.357.547-.992.856-.628.312-1.45.311H6V9.583zm-.35 3.626h.35q.315 0 .578-.09.264-.09.457-.249.193-.158.3-.38A1.1 1.1 0 0 0 9.11 12q0-.27-.106-.49a1.1 1.1 0 0 0-.3-.38 1.4 1.4 0 0 0-.457-.25 1.8 1.8 0 0 0-.578-.089h-.35z\",\n\t\t\t\tclipRule: \"evenodd\"\n\t\t\t})\n\t\t]\n\t})\n});\nconst ForwardRef = forwardRef(SvgIconFileDoc24);\nexport default ForwardRef;\n"],"mappings":";;;AAGA,IAAM,oBAAoB,OAAO,QAAwB,oBAAK,OAAO;CACpE,OAAO;CACP,OAAO;CACP,QAAQ;CACR,MAAM;CACN,SAAS;CACT;CACA,GAAG;CACH,UAA0B,qBAAM,KAAK;EACpC,MAAM;EACN,UAAU;GACO,oBAAK,QAAQ,EAAE,GAAG,2FAA2F,CAAC;GAC9G,oBAAK,QAAQ;IAC5B,UAAU;IACV,GAAG;IACH,UAAU;GACX,CAAC;GACe,oBAAK,QAAQ,EAAE,GAAG,0eAA0e,CAAC;GAC7f,oBAAK,QAAQ;IAC5B,UAAU;IACV,GAAG;IACH,UAAU;GACX,CAAC;EACF;CACD,CAAC;AACF,CAAC;AACD,IAAM,aAAa,WAAW,gBAAgB"}
@@ -12,13 +12,13 @@ var SvgIconFilePdf24 = (props, ref) => /* @__PURE__ */ jsx("svg", {
12
12
  children: /* @__PURE__ */ jsxs("g", {
13
13
  fill: "currentColor",
14
14
  children: [
15
- /* @__PURE__ */ jsx("path", { d: "M4 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-3h-2v3H4V4h12v3h2V4a2 2 0 0 0-2-2z" }),
15
+ /* @__PURE__ */ jsx("path", { d: "M16 2a2 2 0 0 1 2 2v3h-2V4H4v16h12v-3h2v3a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2z" }),
16
16
  /* @__PURE__ */ jsx("path", {
17
17
  fillRule: "evenodd",
18
- d: "M8.5 9.5H6v5h1.5v-1.429h1c1.3 0 2.1-.714 2.1-1.785 0-1.072-.9-1.786-2.1-1.786m-1 1.25h.9c.4 0 .7.179.6.536 0 .268-.2.535-.6.535h-.9zM13.8 9.5h-2.2v5h2.2c1.8 0 3-1.071 3-2.5s-1.3-2.5-3-2.5m-.6 1.25h.6c.8 0 1.4.625 1.4 1.34 0 .714-.6 1.25-1.4 1.25h-.6z",
18
+ d: "M9.16 9.5q.587 0 1.041.222.454.22.707.614.26.393.26.907 0 .515-.26.914a1.76 1.76 0 0 1-.707.621Q9.748 13 9.16 13h-.782v1.5H7v-5zm-.783 2.286h.745q.282 0 .454-.15.18-.15.179-.393a.48.48 0 0 0-.179-.386.67.67 0 0 0-.454-.15h-.745zM14.14 9.5q.855 0 1.51.321.663.322 1.036.886.372.557.372 1.293 0 .729-.372 1.293a2.53 2.53 0 0 1-1.036.886q-.654.32-1.51.321h-1.742v-5zm-.366 3.75h.366q.327 0 .602-.093.276-.092.477-.257.201-.164.312-.393.112-.228.112-.507a1.14 1.14 0 0 0-.424-.9 1.5 1.5 0 0 0-.477-.257 1.9 1.9 0 0 0-.602-.093h-.366z",
19
19
  clipRule: "evenodd"
20
20
  }),
21
- /* @__PURE__ */ jsx("path", { d: "M22 9.5h-4.3v5h1.5v-1.786h2.2v-1.16h-2.2v-.804H22z" })
21
+ /* @__PURE__ */ jsx("path", { d: "M22 10.714h-2.189v.728h1.712v1.215h-1.712V14.5h-1.376v-5H22z" })
22
22
  ]
23
23
  })
24
24
  });
@@ -1 +1 @@
1
- {"version":3,"file":"icon-file-pdf-24.js","names":[],"sources":["../../../lib/svgs/24x24/icon-file-pdf-24.svg?react"],"sourcesContent":["import * as React from \"react\";\nimport { forwardRef } from \"react\";\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nconst SvgIconFilePdf24 = (props, ref) => /* @__PURE__ */ _jsx(\"svg\", {\n\txmlns: \"http://www.w3.org/2000/svg\",\n\twidth: 24,\n\theight: 24,\n\tfill: \"none\",\n\tviewBox: \"0 0 24 24\",\n\tref,\n\t...props,\n\tchildren: /* @__PURE__ */ _jsxs(\"g\", {\n\t\tfill: \"currentColor\",\n\t\tchildren: [\n\t\t\t/* @__PURE__ */ _jsx(\"path\", { d: \"M4 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-3h-2v3H4V4h12v3h2V4a2 2 0 0 0-2-2z\" }),\n\t\t\t/* @__PURE__ */ _jsx(\"path\", {\n\t\t\t\tfillRule: \"evenodd\",\n\t\t\t\td: \"M8.5 9.5H6v5h1.5v-1.429h1c1.3 0 2.1-.714 2.1-1.785 0-1.072-.9-1.786-2.1-1.786m-1 1.25h.9c.4 0 .7.179.6.536 0 .268-.2.535-.6.535h-.9zM13.8 9.5h-2.2v5h2.2c1.8 0 3-1.071 3-2.5s-1.3-2.5-3-2.5m-.6 1.25h.6c.8 0 1.4.625 1.4 1.34 0 .714-.6 1.25-1.4 1.25h-.6z\",\n\t\t\t\tclipRule: \"evenodd\"\n\t\t\t}),\n\t\t\t/* @__PURE__ */ _jsx(\"path\", { d: \"M22 9.5h-4.3v5h1.5v-1.786h2.2v-1.16h-2.2v-.804H22z\" })\n\t\t]\n\t})\n});\nconst ForwardRef = forwardRef(SvgIconFilePdf24);\nexport default ForwardRef;\n"],"mappings":";;;AAGA,IAAM,oBAAoB,OAAO,QAAwB,oBAAK,OAAO;CACpE,OAAO;CACP,OAAO;CACP,QAAQ;CACR,MAAM;CACN,SAAS;CACT;CACA,GAAG;CACH,UAA0B,qBAAM,KAAK;EACpC,MAAM;EACN,UAAU;GACO,oBAAK,QAAQ,EAAE,GAAG,2FAA2F,CAAC;GAC9G,oBAAK,QAAQ;IAC5B,UAAU;IACV,GAAG;IACH,UAAU;GACX,CAAC;GACe,oBAAK,QAAQ,EAAE,GAAG,qDAAqD,CAAC;EACzF;CACD,CAAC;AACF,CAAC;AACD,IAAM,aAAa,WAAW,gBAAgB"}
1
+ {"version":3,"file":"icon-file-pdf-24.js","names":[],"sources":["../../../lib/svgs/24x24/icon-file-pdf-24.svg?react"],"sourcesContent":["import * as React from \"react\";\nimport { forwardRef } from \"react\";\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nconst SvgIconFilePdf24 = (props, ref) => /* @__PURE__ */ _jsx(\"svg\", {\n\txmlns: \"http://www.w3.org/2000/svg\",\n\twidth: 24,\n\theight: 24,\n\tfill: \"none\",\n\tviewBox: \"0 0 24 24\",\n\tref,\n\t...props,\n\tchildren: /* @__PURE__ */ _jsxs(\"g\", {\n\t\tfill: \"currentColor\",\n\t\tchildren: [\n\t\t\t/* @__PURE__ */ _jsx(\"path\", { d: \"M16 2a2 2 0 0 1 2 2v3h-2V4H4v16h12v-3h2v3a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2z\" }),\n\t\t\t/* @__PURE__ */ _jsx(\"path\", {\n\t\t\t\tfillRule: \"evenodd\",\n\t\t\t\td: \"M9.16 9.5q.587 0 1.041.222.454.22.707.614.26.393.26.907 0 .515-.26.914a1.76 1.76 0 0 1-.707.621Q9.748 13 9.16 13h-.782v1.5H7v-5zm-.783 2.286h.745q.282 0 .454-.15.18-.15.179-.393a.48.48 0 0 0-.179-.386.67.67 0 0 0-.454-.15h-.745zM14.14 9.5q.855 0 1.51.321.663.322 1.036.886.372.557.372 1.293 0 .729-.372 1.293a2.53 2.53 0 0 1-1.036.886q-.654.32-1.51.321h-1.742v-5zm-.366 3.75h.366q.327 0 .602-.093.276-.092.477-.257.201-.164.312-.393.112-.228.112-.507a1.14 1.14 0 0 0-.424-.9 1.5 1.5 0 0 0-.477-.257 1.9 1.9 0 0 0-.602-.093h-.366z\",\n\t\t\t\tclipRule: \"evenodd\"\n\t\t\t}),\n\t\t\t/* @__PURE__ */ _jsx(\"path\", { d: \"M22 10.714h-2.189v.728h1.712v1.215h-1.712V14.5h-1.376v-5H22z\" })\n\t\t]\n\t})\n});\nconst ForwardRef = forwardRef(SvgIconFilePdf24);\nexport default ForwardRef;\n"],"mappings":";;;AAGA,IAAM,oBAAoB,OAAO,QAAwB,oBAAK,OAAO;CACpE,OAAO;CACP,OAAO;CACP,QAAQ;CACR,MAAM;CACN,SAAS;CACT;CACA,GAAG;CACH,UAA0B,qBAAM,KAAK;EACpC,MAAM;EACN,UAAU;GACO,oBAAK,QAAQ,EAAE,GAAG,2FAA2F,CAAC;GAC9G,oBAAK,QAAQ;IAC5B,UAAU;IACV,GAAG;IACH,UAAU;GACX,CAAC;GACe,oBAAK,QAAQ,EAAE,GAAG,+DAA+D,CAAC;EACnG;CACD,CAAC;AACF,CAAC;AACD,IAAM,aAAa,WAAW,gBAAgB"}
@@ -12,14 +12,14 @@ var SvgIconFilePlist24 = (props, ref) => /* @__PURE__ */ jsx("svg", {
12
12
  children: /* @__PURE__ */ jsxs("g", {
13
13
  fill: "currentColor",
14
14
  children: [
15
- /* @__PURE__ */ jsx("path", { d: "M4 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-3h-2v3H4V4h12v3h2V4a2 2 0 0 0-2-2z" }),
16
- /* @__PURE__ */ jsx("path", { d: "M16.39 12.052c.346.11.627.198.627.412 0 .235-.206.44-.529.44-.528 0-.88-.44-.88-.44l-.646.675s.558.704 1.644.704c1.027 0 1.643-.616 1.643-1.35 0-.886-.724-1.114-1.28-1.29-.346-.11-.627-.198-.627-.412 0-.176.176-.352.44-.352.405 0 .675.323.675.323l.645-.675s-.44-.587-1.437-.587c-.94 0-1.556.616-1.556 1.262 0 .886.725 1.115 1.28 1.29" }),
15
+ /* @__PURE__ */ jsx("path", { d: "M15.998 2a2 2 0 0 1 2 2v3h-2V4h-12v16h12v-3h2v3a2 2 0 0 1-2 2h-12a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2z" }),
16
+ /* @__PURE__ */ jsx("path", { d: "M16.532 9.5q.396 0 .697.102.306.102.522.324.222.215.365.57l-1.097.317a.5.5 0 0 0-.157-.24.45.45 0 0 0-.33-.12.5.5 0 0 0-.317.09q-.109.09-.109.265 0 .108.09.192.09.077.26.12l.635.161q.48.12.75.475.27.348.27.798 0 .414-.192.702a1.16 1.16 0 0 1-.54.437q-.354.15-.847.15-.293 0-.575-.077a2.2 2.2 0 0 1-.517-.229 1.6 1.6 0 0 1-.377-.323.8.8 0 0 1-.18-.39l1.103-.306q.055.15.187.257a.6.6 0 0 0 .342.115.44.44 0 0 0 .294-.09.3.3 0 0 0 .131-.252.3.3 0 0 0-.078-.193.4.4 0 0 0-.233-.137l-.63-.162a1.6 1.6 0 0 1-.559-.258 1.2 1.2 0 0 1-.353-.427 1.3 1.3 0 0 1-.12-.563q0-.618.408-.96.414-.348 1.157-.348" }),
17
17
  /* @__PURE__ */ jsx("path", {
18
18
  fillRule: "evenodd",
19
- d: "M7.349 9.617H5.5v4.109h1.115v-1.233h.734c.91 0 1.526-.616 1.526-1.438 0-.821-.617-1.438-1.526-1.438m-.734.998h.675c.264 0 .47.205.47.44s-.206.44-.47.44h-.675z",
19
+ d: "M7.548 9.571q.474 0 .84.187a1.4 1.4 0 0 1 .78 1.277q0 .433-.21.769-.204.33-.57.521a1.8 1.8 0 0 1-.84.187h-.63v1.26h-1.11v-4.2zm-.63 1.92h.6a.52.52 0 0 0 .366-.126.42.42 0 0 0 .144-.33.41.41 0 0 0-.144-.323.52.52 0 0 0-.365-.126h-.601z",
20
20
  clipRule: "evenodd"
21
21
  }),
22
- /* @__PURE__ */ jsx("path", { d: "M9.632 13.726h2.935v-.998h-1.82v-3.11H9.633zM13.207 13.726V9.617h1.115v4.109zM18.596 9.617H22v.998h-1.145v3.11H19.74v-3.11h-1.144z" })
22
+ /* @__PURE__ */ jsx("path", { d: "M10.788 12.752h1.728v1.02H9.678v-4.2h1.11zM14.225 13.772h-1.11v-4.2h1.11zM22.002 10.592H20.82v3.18h-1.11v-3.18h-1.187v-1.02h3.479z" })
23
23
  ]
24
24
  })
25
25
  });
@@ -1 +1 @@
1
- {"version":3,"file":"icon-file-plist-24.js","names":[],"sources":["../../../lib/svgs/24x24/icon-file-plist-24.svg?react"],"sourcesContent":["import * as React from \"react\";\nimport { forwardRef } from \"react\";\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nconst SvgIconFilePlist24 = (props, ref) => /* @__PURE__ */ _jsx(\"svg\", {\n\txmlns: \"http://www.w3.org/2000/svg\",\n\twidth: 24,\n\theight: 24,\n\tfill: \"none\",\n\tviewBox: \"0 0 24 24\",\n\tref,\n\t...props,\n\tchildren: /* @__PURE__ */ _jsxs(\"g\", {\n\t\tfill: \"currentColor\",\n\t\tchildren: [\n\t\t\t/* @__PURE__ */ _jsx(\"path\", { d: \"M4 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-3h-2v3H4V4h12v3h2V4a2 2 0 0 0-2-2z\" }),\n\t\t\t/* @__PURE__ */ _jsx(\"path\", { d: \"M16.39 12.052c.346.11.627.198.627.412 0 .235-.206.44-.529.44-.528 0-.88-.44-.88-.44l-.646.675s.558.704 1.644.704c1.027 0 1.643-.616 1.643-1.35 0-.886-.724-1.114-1.28-1.29-.346-.11-.627-.198-.627-.412 0-.176.176-.352.44-.352.405 0 .675.323.675.323l.645-.675s-.44-.587-1.437-.587c-.94 0-1.556.616-1.556 1.262 0 .886.725 1.115 1.28 1.29\" }),\n\t\t\t/* @__PURE__ */ _jsx(\"path\", {\n\t\t\t\tfillRule: \"evenodd\",\n\t\t\t\td: \"M7.349 9.617H5.5v4.109h1.115v-1.233h.734c.91 0 1.526-.616 1.526-1.438 0-.821-.617-1.438-1.526-1.438m-.734.998h.675c.264 0 .47.205.47.44s-.206.44-.47.44h-.675z\",\n\t\t\t\tclipRule: \"evenodd\"\n\t\t\t}),\n\t\t\t/* @__PURE__ */ _jsx(\"path\", { d: \"M9.632 13.726h2.935v-.998h-1.82v-3.11H9.633zM13.207 13.726V9.617h1.115v4.109zM18.596 9.617H22v.998h-1.145v3.11H19.74v-3.11h-1.144z\" })\n\t\t]\n\t})\n});\nconst ForwardRef = forwardRef(SvgIconFilePlist24);\nexport default ForwardRef;\n"],"mappings":";;;AAGA,IAAM,sBAAsB,OAAO,QAAwB,oBAAK,OAAO;CACtE,OAAO;CACP,OAAO;CACP,QAAQ;CACR,MAAM;CACN,SAAS;CACT;CACA,GAAG;CACH,UAA0B,qBAAM,KAAK;EACpC,MAAM;EACN,UAAU;GACO,oBAAK,QAAQ,EAAE,GAAG,2FAA2F,CAAC;GAC9G,oBAAK,QAAQ,EAAE,GAAG,gVAAgV,CAAC;GACnW,oBAAK,QAAQ;IAC5B,UAAU;IACV,GAAG;IACH,UAAU;GACX,CAAC;GACe,oBAAK,QAAQ,EAAE,GAAG,qIAAqI,CAAC;EACzK;CACD,CAAC;AACF,CAAC;AACD,IAAM,aAAa,WAAW,kBAAkB"}
1
+ {"version":3,"file":"icon-file-plist-24.js","names":[],"sources":["../../../lib/svgs/24x24/icon-file-plist-24.svg?react"],"sourcesContent":["import * as React from \"react\";\nimport { forwardRef } from \"react\";\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nconst SvgIconFilePlist24 = (props, ref) => /* @__PURE__ */ _jsx(\"svg\", {\n\txmlns: \"http://www.w3.org/2000/svg\",\n\twidth: 24,\n\theight: 24,\n\tfill: \"none\",\n\tviewBox: \"0 0 24 24\",\n\tref,\n\t...props,\n\tchildren: /* @__PURE__ */ _jsxs(\"g\", {\n\t\tfill: \"currentColor\",\n\t\tchildren: [\n\t\t\t/* @__PURE__ */ _jsx(\"path\", { d: \"M15.998 2a2 2 0 0 1 2 2v3h-2V4h-12v16h12v-3h2v3a2 2 0 0 1-2 2h-12a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2z\" }),\n\t\t\t/* @__PURE__ */ _jsx(\"path\", { d: \"M16.532 9.5q.396 0 .697.102.306.102.522.324.222.215.365.57l-1.097.317a.5.5 0 0 0-.157-.24.45.45 0 0 0-.33-.12.5.5 0 0 0-.317.09q-.109.09-.109.265 0 .108.09.192.09.077.26.12l.635.161q.48.12.75.475.27.348.27.798 0 .414-.192.702a1.16 1.16 0 0 1-.54.437q-.354.15-.847.15-.293 0-.575-.077a2.2 2.2 0 0 1-.517-.229 1.6 1.6 0 0 1-.377-.323.8.8 0 0 1-.18-.39l1.103-.306q.055.15.187.257a.6.6 0 0 0 .342.115.44.44 0 0 0 .294-.09.3.3 0 0 0 .131-.252.3.3 0 0 0-.078-.193.4.4 0 0 0-.233-.137l-.63-.162a1.6 1.6 0 0 1-.559-.258 1.2 1.2 0 0 1-.353-.427 1.3 1.3 0 0 1-.12-.563q0-.618.408-.96.414-.348 1.157-.348\" }),\n\t\t\t/* @__PURE__ */ _jsx(\"path\", {\n\t\t\t\tfillRule: \"evenodd\",\n\t\t\t\td: \"M7.548 9.571q.474 0 .84.187a1.4 1.4 0 0 1 .78 1.277q0 .433-.21.769-.204.33-.57.521a1.8 1.8 0 0 1-.84.187h-.63v1.26h-1.11v-4.2zm-.63 1.92h.6a.52.52 0 0 0 .366-.126.42.42 0 0 0 .144-.33.41.41 0 0 0-.144-.323.52.52 0 0 0-.365-.126h-.601z\",\n\t\t\t\tclipRule: \"evenodd\"\n\t\t\t}),\n\t\t\t/* @__PURE__ */ _jsx(\"path\", { d: \"M10.788 12.752h1.728v1.02H9.678v-4.2h1.11zM14.225 13.772h-1.11v-4.2h1.11zM22.002 10.592H20.82v3.18h-1.11v-3.18h-1.187v-1.02h3.479z\" })\n\t\t]\n\t})\n});\nconst ForwardRef = forwardRef(SvgIconFilePlist24);\nexport default ForwardRef;\n"],"mappings":";;;AAGA,IAAM,sBAAsB,OAAO,QAAwB,oBAAK,OAAO;CACtE,OAAO;CACP,OAAO;CACP,QAAQ;CACR,MAAM;CACN,SAAS;CACT;CACA,GAAG;CACH,UAA0B,qBAAM,KAAK;EACpC,MAAM;EACN,UAAU;GACO,oBAAK,QAAQ,EAAE,GAAG,mGAAmG,CAAC;GACtH,oBAAK,QAAQ,EAAE,GAAG,olBAAolB,CAAC;GACvmB,oBAAK,QAAQ;IAC5B,UAAU;IACV,GAAG;IACH,UAAU;GACX,CAAC;GACe,oBAAK,QAAQ,EAAE,GAAG,qIAAqI,CAAC;EACzK;CACD,CAAC;AACF,CAAC;AACD,IAAM,aAAa,WAAW,kBAAkB"}
@@ -0,0 +1,21 @@
1
+ import { forwardRef } from "react";
2
+ import { jsx, jsxs } from "react/jsx-runtime";
3
+ //#region lib/svgs/24x24/icon-file-yml-24.svg?react
4
+ var SvgIconFileYml24 = (props, ref) => /* @__PURE__ */ jsx("svg", {
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ width: 24,
7
+ height: 24,
8
+ fill: "none",
9
+ viewBox: "0 0 24 24",
10
+ ref,
11
+ ...props,
12
+ children: /* @__PURE__ */ jsxs("g", {
13
+ fill: "currentColor",
14
+ children: [/* @__PURE__ */ jsx("path", { d: "M16 2a2 2 0 0 1 2 2v3h-2V4H4v16h12v-3h2v3a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2z" }), /* @__PURE__ */ jsx("path", { d: "M8.412 11.065 9.326 9.5h1.5l-1.75 2.868V14.5h-1.32v-2.121L6 9.5h1.499zM14.526 11.286 15.732 9.5h1.463v5h-1.32v-2.957L14.533 13.5l-1.356-1.957V14.5h-1.32v-5h1.462zM19.944 13.286H22V14.5h-3.376v-5h1.32z" })]
15
+ })
16
+ });
17
+ var ForwardRef = forwardRef(SvgIconFileYml24);
18
+ //#endregion
19
+ export { ForwardRef as default };
20
+
21
+ //# sourceMappingURL=icon-file-yml-24.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"icon-file-yml-24.js","names":[],"sources":["../../../lib/svgs/24x24/icon-file-yml-24.svg?react"],"sourcesContent":["import * as React from \"react\";\nimport { forwardRef } from \"react\";\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nconst SvgIconFileYml24 = (props, ref) => /* @__PURE__ */ _jsx(\"svg\", {\n\txmlns: \"http://www.w3.org/2000/svg\",\n\twidth: 24,\n\theight: 24,\n\tfill: \"none\",\n\tviewBox: \"0 0 24 24\",\n\tref,\n\t...props,\n\tchildren: /* @__PURE__ */ _jsxs(\"g\", {\n\t\tfill: \"currentColor\",\n\t\tchildren: [/* @__PURE__ */ _jsx(\"path\", { d: \"M16 2a2 2 0 0 1 2 2v3h-2V4H4v16h12v-3h2v3a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2z\" }), /* @__PURE__ */ _jsx(\"path\", { d: \"M8.412 11.065 9.326 9.5h1.5l-1.75 2.868V14.5h-1.32v-2.121L6 9.5h1.499zM14.526 11.286 15.732 9.5h1.463v5h-1.32v-2.957L14.533 13.5l-1.356-1.957V14.5h-1.32v-5h1.462zM19.944 13.286H22V14.5h-3.376v-5h1.32z\" })]\n\t})\n});\nconst ForwardRef = forwardRef(SvgIconFileYml24);\nexport default ForwardRef;\n"],"mappings":";;;AAGA,IAAM,oBAAoB,OAAO,QAAwB,oBAAK,OAAO;CACpE,OAAO;CACP,OAAO;CACP,QAAQ;CACR,MAAM;CACN,SAAS;CACT;CACA,GAAG;CACH,UAA0B,qBAAM,KAAK;EACpC,MAAM;EACN,UAAU,CAAiB,oBAAK,QAAQ,EAAE,GAAG,2FAA2F,CAAC,GAAmB,oBAAK,QAAQ,EAAE,GAAG,2MAA2M,CAAC,CAAC;CAC5X,CAAC;AACF,CAAC;AACD,IAAM,aAAa,WAAW,gBAAgB"}
@@ -12,11 +12,11 @@ var SvgIconFileZip24 = (props, ref) => /* @__PURE__ */ jsx("svg", {
12
12
  children: /* @__PURE__ */ jsxs("g", {
13
13
  fill: "currentColor",
14
14
  children: [
15
- /* @__PURE__ */ jsx("path", { d: "M4 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-3h-2v3H4V4h12v3h2V4a2 2 0 0 0-2-2z" }),
16
- /* @__PURE__ */ jsx("path", { d: "M9.607 10.714h2.107L9.5 13.286V14.5h4.071v-1.214h-2.285l2.214-2.572V9.5H9.607zM14.94 9.5v5h1.358v-5z" }),
15
+ /* @__PURE__ */ jsx("path", { d: "M16 2a2 2 0 0 1 2 2v3h-2V4H4v16h12v-3h2v3a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2z" }),
16
+ /* @__PURE__ */ jsx("path", { d: "m14.04 10.75-2.302 2.5h2.28v1.25H10.01v-1.25l2.3-2.5H10.03V9.5h4.008zM16.574 14.5h-1.321v-5h1.321z" }),
17
17
  /* @__PURE__ */ jsx("path", {
18
18
  fillRule: "evenodd",
19
- d: "M17.917 9.5h2.25c1.107 0 1.857.75 1.857 1.75S21.274 13 20.167 13h-.893v1.5h-1.357zm2.178 1.214h-.821v1.072h.821c.322 0 .572-.25.572-.536s-.25-.536-.572-.536",
19
+ d: "M20.072 9.5q.565 0 1 .222a1.67 1.67 0 0 1 .929 1.521q0 .515-.25.914a1.7 1.7 0 0 1-.679.621q-.435.222-1 .222h-.75v1.5h-1.321v-5zm-.75 2.286h.714q.272 0 .437-.15.17-.15.17-.393a.49.49 0 0 0-.17-.386.62.62 0 0 0-.437-.15h-.714z",
20
20
  clipRule: "evenodd"
21
21
  })
22
22
  ]
@@ -1 +1 @@
1
- {"version":3,"file":"icon-file-zip-24.js","names":[],"sources":["../../../lib/svgs/24x24/icon-file-zip-24.svg?react"],"sourcesContent":["import * as React from \"react\";\nimport { forwardRef } from \"react\";\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nconst SvgIconFileZip24 = (props, ref) => /* @__PURE__ */ _jsx(\"svg\", {\n\txmlns: \"http://www.w3.org/2000/svg\",\n\twidth: 24,\n\theight: 24,\n\tfill: \"none\",\n\tviewBox: \"0 0 24 24\",\n\tref,\n\t...props,\n\tchildren: /* @__PURE__ */ _jsxs(\"g\", {\n\t\tfill: \"currentColor\",\n\t\tchildren: [\n\t\t\t/* @__PURE__ */ _jsx(\"path\", { d: \"M4 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-3h-2v3H4V4h12v3h2V4a2 2 0 0 0-2-2z\" }),\n\t\t\t/* @__PURE__ */ _jsx(\"path\", { d: \"M9.607 10.714h2.107L9.5 13.286V14.5h4.071v-1.214h-2.285l2.214-2.572V9.5H9.607zM14.94 9.5v5h1.358v-5z\" }),\n\t\t\t/* @__PURE__ */ _jsx(\"path\", {\n\t\t\t\tfillRule: \"evenodd\",\n\t\t\t\td: \"M17.917 9.5h2.25c1.107 0 1.857.75 1.857 1.75S21.274 13 20.167 13h-.893v1.5h-1.357zm2.178 1.214h-.821v1.072h.821c.322 0 .572-.25.572-.536s-.25-.536-.572-.536\",\n\t\t\t\tclipRule: \"evenodd\"\n\t\t\t})\n\t\t]\n\t})\n});\nconst ForwardRef = forwardRef(SvgIconFileZip24);\nexport default ForwardRef;\n"],"mappings":";;;AAGA,IAAM,oBAAoB,OAAO,QAAwB,oBAAK,OAAO;CACpE,OAAO;CACP,OAAO;CACP,QAAQ;CACR,MAAM;CACN,SAAS;CACT;CACA,GAAG;CACH,UAA0B,qBAAM,KAAK;EACpC,MAAM;EACN,UAAU;GACO,oBAAK,QAAQ,EAAE,GAAG,2FAA2F,CAAC;GAC9G,oBAAK,QAAQ,EAAE,GAAG,uGAAuG,CAAC;GAC1H,oBAAK,QAAQ;IAC5B,UAAU;IACV,GAAG;IACH,UAAU;GACX,CAAC;EACF;CACD,CAAC;AACF,CAAC;AACD,IAAM,aAAa,WAAW,gBAAgB"}
1
+ {"version":3,"file":"icon-file-zip-24.js","names":[],"sources":["../../../lib/svgs/24x24/icon-file-zip-24.svg?react"],"sourcesContent":["import * as React from \"react\";\nimport { forwardRef } from \"react\";\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nconst SvgIconFileZip24 = (props, ref) => /* @__PURE__ */ _jsx(\"svg\", {\n\txmlns: \"http://www.w3.org/2000/svg\",\n\twidth: 24,\n\theight: 24,\n\tfill: \"none\",\n\tviewBox: \"0 0 24 24\",\n\tref,\n\t...props,\n\tchildren: /* @__PURE__ */ _jsxs(\"g\", {\n\t\tfill: \"currentColor\",\n\t\tchildren: [\n\t\t\t/* @__PURE__ */ _jsx(\"path\", { d: \"M16 2a2 2 0 0 1 2 2v3h-2V4H4v16h12v-3h2v3a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2z\" }),\n\t\t\t/* @__PURE__ */ _jsx(\"path\", { d: \"m14.04 10.75-2.302 2.5h2.28v1.25H10.01v-1.25l2.3-2.5H10.03V9.5h4.008zM16.574 14.5h-1.321v-5h1.321z\" }),\n\t\t\t/* @__PURE__ */ _jsx(\"path\", {\n\t\t\t\tfillRule: \"evenodd\",\n\t\t\t\td: \"M20.072 9.5q.565 0 1 .222a1.67 1.67 0 0 1 .929 1.521q0 .515-.25.914a1.7 1.7 0 0 1-.679.621q-.435.222-1 .222h-.75v1.5h-1.321v-5zm-.75 2.286h.714q.272 0 .437-.15.17-.15.17-.393a.49.49 0 0 0-.17-.386.62.62 0 0 0-.437-.15h-.714z\",\n\t\t\t\tclipRule: \"evenodd\"\n\t\t\t})\n\t\t]\n\t})\n});\nconst ForwardRef = forwardRef(SvgIconFileZip24);\nexport default ForwardRef;\n"],"mappings":";;;AAGA,IAAM,oBAAoB,OAAO,QAAwB,oBAAK,OAAO;CACpE,OAAO;CACP,OAAO;CACP,QAAQ;CACR,MAAM;CACN,SAAS;CACT;CACA,GAAG;CACH,UAA0B,qBAAM,KAAK;EACpC,MAAM;EACN,UAAU;GACO,oBAAK,QAAQ,EAAE,GAAG,2FAA2F,CAAC;GAC9G,oBAAK,QAAQ,EAAE,GAAG,qGAAqG,CAAC;GACxH,oBAAK,QAAQ;IAC5B,UAAU;IACV,GAAG;IACH,UAAU;GACX,CAAC;EACF;CACD,CAAC;AACF,CAAC;AACD,IAAM,aAAa,WAAW,gBAAgB"}
@@ -6,12 +6,12 @@ var SvgIconSkip24 = (props, ref) => /* @__PURE__ */ jsx("svg", {
6
6
  width: 24,
7
7
  height: 24,
8
8
  fill: "none",
9
- viewBox: "3 3 18 18",
9
+ viewBox: "0 0 24 24",
10
10
  ref,
11
11
  ...props,
12
12
  children: /* @__PURE__ */ jsxs("g", {
13
13
  fill: "currentColor",
14
- children: [/* @__PURE__ */ jsx("path", { d: "M8.207 7.793 12.414 12l-4.207 4.207-1.414-1.414L9.586 12 6.793 9.207z" }), /* @__PURE__ */ jsx("path", { d: "M13.207 16.207 17.414 12l-4.207-4.207-1.414 1.414L14.586 12l-2.793 2.793z" })]
14
+ children: [/* @__PURE__ */ jsx("path", { d: "m12.414 12-4.207 4.207-1.414-1.414L9.586 12 6.793 9.207l1.414-1.414z" }), /* @__PURE__ */ jsx("path", { d: "m17.414 12-4.207 4.207-1.414-1.414L14.586 12l-2.793-2.793 1.414-1.414z" })]
15
15
  })
16
16
  });
17
17
  var ForwardRef = forwardRef(SvgIconSkip24);
@@ -1 +1 @@
1
- {"version":3,"file":"icon-skip-24.js","names":[],"sources":["../../../lib/svgs/24x24/icon-skip-24.svg?react"],"sourcesContent":["import * as React from \"react\";\nimport { forwardRef } from \"react\";\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nconst SvgIconSkip24 = (props, ref) => /* @__PURE__ */ _jsx(\"svg\", {\n\txmlns: \"http://www.w3.org/2000/svg\",\n\twidth: 24,\n\theight: 24,\n\tfill: \"none\",\n\tviewBox: \"3 3 18 18\",\n\tref,\n\t...props,\n\tchildren: /* @__PURE__ */ _jsxs(\"g\", {\n\t\tfill: \"currentColor\",\n\t\tchildren: [/* @__PURE__ */ _jsx(\"path\", { d: \"M8.207 7.793 12.414 12l-4.207 4.207-1.414-1.414L9.586 12 6.793 9.207z\" }), /* @__PURE__ */ _jsx(\"path\", { d: \"M13.207 16.207 17.414 12l-4.207-4.207-1.414 1.414L14.586 12l-2.793 2.793z\" })]\n\t})\n});\nconst ForwardRef = forwardRef(SvgIconSkip24);\nexport default ForwardRef;\n"],"mappings":";;;AAGA,IAAM,iBAAiB,OAAO,QAAwB,oBAAK,OAAO;CACjE,OAAO;CACP,OAAO;CACP,QAAQ;CACR,MAAM;CACN,SAAS;CACT;CACA,GAAG;CACH,UAA0B,qBAAM,KAAK;EACpC,MAAM;EACN,UAAU,CAAiB,oBAAK,QAAQ,EAAE,GAAG,wEAAwE,CAAC,GAAmB,oBAAK,QAAQ,EAAE,GAAG,4EAA4E,CAAC,CAAC;CAC1O,CAAC;AACF,CAAC;AACD,IAAM,aAAa,WAAW,aAAa"}
1
+ {"version":3,"file":"icon-skip-24.js","names":[],"sources":["../../../lib/svgs/24x24/icon-skip-24.svg?react"],"sourcesContent":["import * as React from \"react\";\nimport { forwardRef } from \"react\";\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nconst SvgIconSkip24 = (props, ref) => /* @__PURE__ */ _jsx(\"svg\", {\n\txmlns: \"http://www.w3.org/2000/svg\",\n\twidth: 24,\n\theight: 24,\n\tfill: \"none\",\n\tviewBox: \"0 0 24 24\",\n\tref,\n\t...props,\n\tchildren: /* @__PURE__ */ _jsxs(\"g\", {\n\t\tfill: \"currentColor\",\n\t\tchildren: [/* @__PURE__ */ _jsx(\"path\", { d: \"m12.414 12-4.207 4.207-1.414-1.414L9.586 12 6.793 9.207l1.414-1.414z\" }), /* @__PURE__ */ _jsx(\"path\", { d: \"m17.414 12-4.207 4.207-1.414-1.414L14.586 12l-2.793-2.793 1.414-1.414z\" })]\n\t})\n});\nconst ForwardRef = forwardRef(SvgIconSkip24);\nexport default ForwardRef;\n"],"mappings":";;;AAGA,IAAM,iBAAiB,OAAO,QAAwB,oBAAK,OAAO;CACjE,OAAO;CACP,OAAO;CACP,QAAQ;CACR,MAAM;CACN,SAAS;CACT;CACA,GAAG;CACH,UAA0B,qBAAM,KAAK;EACpC,MAAM;EACN,UAAU,CAAiB,oBAAK,QAAQ,EAAE,GAAG,uEAAuE,CAAC,GAAmB,oBAAK,QAAQ,EAAE,GAAG,yEAAyE,CAAC,CAAC;CACtO,CAAC;AACF,CAAC;AACD,IAAM,aAAa,WAAW,aAAa"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bitrise/bitkit-v2",
3
3
  "private": false,
4
- "version": "0.3.239",
4
+ "version": "0.3.241",
5
5
  "description": "Bitrise Design System Components built with Chakra UI V3",
6
6
  "keywords": [
7
7
  "react",