@bitrise/bitkit-v2 0.3.159 → 0.3.161

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/dist/components/BitkitActionMenu/BitkitActionMenu.d.ts +2 -2
  2. package/dist/components/BitkitColorButton/BitkitColorButton.d.ts +5 -0
  3. package/dist/components/BitkitSplitButton/BitkitSplitButton.d.ts +27 -0
  4. package/dist/components/BitkitTabs/BitkitTabs.d.ts +16 -0
  5. package/dist/icons/IconArchive.d.ts +8 -0
  6. package/dist/icons/IconArchive.js +28 -0
  7. package/dist/icons/IconArchiveDelete.d.ts +8 -0
  8. package/dist/icons/IconArchiveDelete.js +28 -0
  9. package/dist/icons/IconArchiveRestore.d.ts +8 -0
  10. package/dist/icons/IconArchiveRestore.js +28 -0
  11. package/dist/icons/IconClaude.d.ts +8 -0
  12. package/dist/icons/IconClaude.js +28 -0
  13. package/dist/icons/IconClaudeColor.d.ts +8 -0
  14. package/dist/icons/IconClaudeColor.js +28 -0
  15. package/dist/icons/IconNextjs.d.ts +8 -0
  16. package/dist/icons/IconNextjs.js +28 -0
  17. package/dist/icons/IconPython.d.ts +8 -0
  18. package/dist/icons/IconPython.js +28 -0
  19. package/dist/icons/IconPythonColor.d.ts +8 -0
  20. package/dist/icons/IconPythonColor.js +28 -0
  21. package/dist/icons/IconTemplateCode.d.ts +8 -0
  22. package/dist/icons/IconTemplateCode.js +28 -0
  23. package/dist/icons/index.d.ts +9 -0
  24. package/dist/main.js +616 -598
  25. package/dist/svgs/16x16/icon-archive-16.js +21 -0
  26. package/dist/svgs/16x16/icon-archive-delete-16.js +21 -0
  27. package/dist/svgs/16x16/icon-archive-restore-16.js +21 -0
  28. package/dist/svgs/16x16/icon-claude-16.js +17 -0
  29. package/dist/svgs/16x16/icon-claude-color-16.js +17 -0
  30. package/dist/svgs/16x16/icon-nextjs-16.js +17 -0
  31. package/dist/svgs/16x16/icon-python-16.js +17 -0
  32. package/dist/svgs/16x16/icon-python-color-16.js +46 -0
  33. package/dist/svgs/16x16/icon-teams-color-16.js +3 -3
  34. package/dist/svgs/16x16/icon-template-code-16.js +17 -0
  35. package/dist/svgs/24x24/icon-archive-24.js +21 -0
  36. package/dist/svgs/24x24/icon-archive-delete-24.js +21 -0
  37. package/dist/svgs/24x24/icon-archive-restore-24.js +21 -0
  38. package/dist/svgs/24x24/icon-claude-24.js +17 -0
  39. package/dist/svgs/24x24/icon-claude-color-24.js +17 -0
  40. package/dist/svgs/24x24/icon-nextjs-24.js +17 -0
  41. package/dist/svgs/24x24/icon-python-24.js +17 -0
  42. package/dist/svgs/24x24/icon-python-color-24.js +46 -0
  43. package/dist/svgs/24x24/icon-teams-color-24.js +1 -1
  44. package/dist/svgs/24x24/icon-template-code-24.js +17 -0
  45. package/package.json +5 -5
@@ -5,12 +5,12 @@ interface BitkitMenuRootProps extends Omit<MenuRootProps, 'children'> {
5
5
  trigger: ReactNode;
6
6
  children?: ReactNode;
7
7
  }
8
- interface BitkitMenuItemProps extends MenuItemProps {
8
+ export interface BitkitMenuItemProps extends MenuItemProps {
9
9
  danger?: boolean;
10
10
  secondaryText?: ReactNode;
11
11
  icon?: BitkitIconComponent;
12
12
  }
13
- interface BitkitMenuGroupProps extends MenuItemGroupProps {
13
+ export interface BitkitMenuGroupProps extends MenuItemGroupProps {
14
14
  label: ReactNode;
15
15
  }
16
16
  declare const BitkitActionMenu: {
@@ -0,0 +1,5 @@
1
+ import { HTMLChakraProps, RecipeProps } from '@chakra-ui/react/styled-system';
2
+ export type BitkitColorButtonProps = Omit<HTMLChakraProps<'button'>, 'size'> & RecipeProps<'colorButton'>;
3
+ declare const withContext: <T, P>(Component: React.ElementType<any>, options?: import('@chakra-ui/react').JsxFactoryOptions<P>) => React.ForwardRefExoticComponent<React.PropsWithoutRef<P> & React.RefAttributes<T>>;
4
+ declare const BitkitColorButton: ReturnType<typeof withContext<HTMLButtonElement, BitkitColorButtonProps>>;
5
+ export default BitkitColorButton;
@@ -0,0 +1,27 @@
1
+ import { PropsWithChildren, ReactNode } from 'react';
2
+ import { BitkitButtonProps } from '../BitkitButton/BitkitButton';
3
+ type Size = 'lg' | 'md' | 'sm';
4
+ type Variant = 'primary' | 'secondary';
5
+ type State = 'disabled' | 'loading' | 'skeleton';
6
+ type BitkitSplitButtonActionProps = Omit<BitkitButtonProps, 'size' | 'variant' | 'state'>;
7
+ export type BitkitSplitButtonProps = PropsWithChildren<{
8
+ size?: Size;
9
+ variant?: Variant;
10
+ state?: State;
11
+ }>;
12
+ declare const _default: import('react').ForwardRefExoticComponent<{
13
+ size?: Size;
14
+ variant?: Variant;
15
+ state?: State;
16
+ } & {
17
+ children?: ReactNode | undefined;
18
+ } & import('react').RefAttributes<HTMLDivElement>> & {
19
+ Action: import('react').ForwardRefExoticComponent<BitkitSplitButtonActionProps & import('react').RefAttributes<HTMLButtonElement>>;
20
+ Group: import('react').ForwardRefExoticComponent<import('../BitkitActionMenu/BitkitActionMenu').BitkitMenuGroupProps & import('react').RefAttributes<HTMLDivElement>>;
21
+ Item: import('react').ForwardRefExoticComponent<import('../BitkitActionMenu/BitkitActionMenu').BitkitMenuItemProps & import('react').RefAttributes<HTMLDivElement>>;
22
+ Separator: {
23
+ (): import("react/jsx-runtime").JSX.Element;
24
+ displayName: string;
25
+ };
26
+ };
27
+ export default _default;
@@ -0,0 +1,16 @@
1
+ import { Tabs } from '@chakra-ui/react/tabs';
2
+ import { ReactNode } from 'react';
3
+ import { BitkitIconComponent } from '../../icons';
4
+ export declare const RootPropsProvider: import('react').Provider<Tabs.RootProps>, useRootPropsContext: () => Tabs.RootProps;
5
+ declare const Root: import('react').ForwardRefExoticComponent<Tabs.RootProps & import('react').RefAttributes<HTMLDivElement>>;
6
+ declare const Trigger: import('react').ForwardRefExoticComponent<Tabs.TriggerProps & {
7
+ badge?: ReactNode;
8
+ children?: string;
9
+ icon?: BitkitIconComponent;
10
+ secondaryText?: string;
11
+ } & import('react').RefAttributes<HTMLButtonElement>>;
12
+ declare const BitkitTabs: Omit<typeof Tabs, 'Root' | 'Trigger'> & {
13
+ Root: typeof Root;
14
+ Trigger: typeof Trigger;
15
+ };
16
+ export default BitkitTabs;
@@ -0,0 +1,8 @@
1
+ import { IconProps } from '@chakra-ui/react/icon';
2
+ export interface IconArchiveProps extends IconProps {
3
+ size?: '16' | '24';
4
+ }
5
+ declare const IconArchive: import('react').ForwardRefExoticComponent<IconArchiveProps> & {
6
+ __bitkitIcon: true;
7
+ };
8
+ export default IconArchive;
@@ -0,0 +1,28 @@
1
+ import { bitkitIcon as e } from "./bitkitIcon.js";
2
+ import h from "../svgs/16x16/icon-archive-16.js";
3
+ import n from "../svgs/24x24/icon-archive-24.js";
4
+ import { Icon as t } from "@chakra-ui/react/icon";
5
+ import { jsx as i } from "react/jsx-runtime";
6
+ var m = e(function({ size: c = "24", ...r }, o) {
7
+ return c === "16" ? /* @__PURE__ */ i(t, {
8
+ asChild: !0,
9
+ ref: o,
10
+ ...r,
11
+ children: /* @__PURE__ */ i(h, {
12
+ width: "16",
13
+ height: "16"
14
+ })
15
+ }) : /* @__PURE__ */ i(t, {
16
+ asChild: !0,
17
+ ref: o,
18
+ ...r,
19
+ children: /* @__PURE__ */ i(n, {
20
+ width: "24",
21
+ height: "24"
22
+ })
23
+ });
24
+ });
25
+ m.displayName = "IconArchive";
26
+ export {
27
+ m as default
28
+ };
@@ -0,0 +1,8 @@
1
+ import { IconProps } from '@chakra-ui/react/icon';
2
+ export interface IconArchiveDeleteProps extends IconProps {
3
+ size?: '16' | '24';
4
+ }
5
+ declare const IconArchiveDelete: import('react').ForwardRefExoticComponent<IconArchiveDeleteProps> & {
6
+ __bitkitIcon: true;
7
+ };
8
+ export default IconArchiveDelete;
@@ -0,0 +1,28 @@
1
+ import { bitkitIcon as c } from "./bitkitIcon.js";
2
+ import h from "../svgs/16x16/icon-archive-delete-16.js";
3
+ import n from "../svgs/24x24/icon-archive-delete-24.js";
4
+ import { Icon as t } from "@chakra-ui/react/icon";
5
+ import { jsx as e } from "react/jsx-runtime";
6
+ var l = c(function({ size: o = "24", ...i }, r) {
7
+ return o === "16" ? /* @__PURE__ */ e(t, {
8
+ asChild: !0,
9
+ ref: r,
10
+ ...i,
11
+ children: /* @__PURE__ */ e(h, {
12
+ width: "16",
13
+ height: "16"
14
+ })
15
+ }) : /* @__PURE__ */ e(t, {
16
+ asChild: !0,
17
+ ref: r,
18
+ ...i,
19
+ children: /* @__PURE__ */ e(n, {
20
+ width: "24",
21
+ height: "24"
22
+ })
23
+ });
24
+ });
25
+ l.displayName = "IconArchiveDelete";
26
+ export {
27
+ l as default
28
+ };
@@ -0,0 +1,8 @@
1
+ import { IconProps } from '@chakra-ui/react/icon';
2
+ export interface IconArchiveRestoreProps extends IconProps {
3
+ size?: '16' | '24';
4
+ }
5
+ declare const IconArchiveRestore: import('react').ForwardRefExoticComponent<IconArchiveRestoreProps> & {
6
+ __bitkitIcon: true;
7
+ };
8
+ export default IconArchiveRestore;
@@ -0,0 +1,28 @@
1
+ import { bitkitIcon as c } from "./bitkitIcon.js";
2
+ import h from "../svgs/16x16/icon-archive-restore-16.js";
3
+ import n from "../svgs/24x24/icon-archive-restore-24.js";
4
+ import { Icon as o } from "@chakra-ui/react/icon";
5
+ import { jsx as r } from "react/jsx-runtime";
6
+ var m = c(function({ size: t = "24", ...e }, i) {
7
+ return t === "16" ? /* @__PURE__ */ r(o, {
8
+ asChild: !0,
9
+ ref: i,
10
+ ...e,
11
+ children: /* @__PURE__ */ r(h, {
12
+ width: "16",
13
+ height: "16"
14
+ })
15
+ }) : /* @__PURE__ */ r(o, {
16
+ asChild: !0,
17
+ ref: i,
18
+ ...e,
19
+ children: /* @__PURE__ */ r(n, {
20
+ width: "24",
21
+ height: "24"
22
+ })
23
+ });
24
+ });
25
+ m.displayName = "IconArchiveRestore";
26
+ export {
27
+ m as default
28
+ };
@@ -0,0 +1,8 @@
1
+ import { IconProps } from '@chakra-ui/react/icon';
2
+ export interface IconClaudeProps extends IconProps {
3
+ size?: '16' | '24';
4
+ }
5
+ declare const IconClaude: import('react').ForwardRefExoticComponent<IconClaudeProps> & {
6
+ __bitkitIcon: true;
7
+ };
8
+ export default IconClaude;
@@ -0,0 +1,28 @@
1
+ import { bitkitIcon as d } from "./bitkitIcon.js";
2
+ import n from "../svgs/16x16/icon-claude-16.js";
3
+ import a from "../svgs/24x24/icon-claude-24.js";
4
+ import { Icon as t } from "@chakra-ui/react/icon";
5
+ import { jsx as i } from "react/jsx-runtime";
6
+ var l = d(function({ size: e = "24", ...o }, r) {
7
+ return e === "16" ? /* @__PURE__ */ i(t, {
8
+ asChild: !0,
9
+ ref: r,
10
+ ...o,
11
+ children: /* @__PURE__ */ i(n, {
12
+ width: "16",
13
+ height: "16"
14
+ })
15
+ }) : /* @__PURE__ */ i(t, {
16
+ asChild: !0,
17
+ ref: r,
18
+ ...o,
19
+ children: /* @__PURE__ */ i(a, {
20
+ width: "24",
21
+ height: "24"
22
+ })
23
+ });
24
+ });
25
+ l.displayName = "IconClaude";
26
+ export {
27
+ l as default
28
+ };
@@ -0,0 +1,8 @@
1
+ import { IconProps } from '@chakra-ui/react/icon';
2
+ export interface IconClaudeColorProps extends IconProps {
3
+ size?: '16' | '24';
4
+ }
5
+ declare const IconClaudeColor: import('react').ForwardRefExoticComponent<IconClaudeColorProps> & {
6
+ __bitkitIcon: true;
7
+ };
8
+ export default IconClaudeColor;
@@ -0,0 +1,28 @@
1
+ import { bitkitIcon as e } from "./bitkitIcon.js";
2
+ import d from "../svgs/16x16/icon-claude-color-16.js";
3
+ import n from "../svgs/24x24/icon-claude-color-24.js";
4
+ import { Icon as t } from "@chakra-ui/react/icon";
5
+ import { jsx as o } from "react/jsx-runtime";
6
+ var a = e(function({ size: l = "24", ...r }, i) {
7
+ return l === "16" ? /* @__PURE__ */ o(t, {
8
+ asChild: !0,
9
+ ref: i,
10
+ ...r,
11
+ children: /* @__PURE__ */ o(d, {
12
+ width: "16",
13
+ height: "16"
14
+ })
15
+ }) : /* @__PURE__ */ o(t, {
16
+ asChild: !0,
17
+ ref: i,
18
+ ...r,
19
+ children: /* @__PURE__ */ o(n, {
20
+ width: "24",
21
+ height: "24"
22
+ })
23
+ });
24
+ });
25
+ a.displayName = "IconClaudeColor";
26
+ export {
27
+ a as default
28
+ };
@@ -0,0 +1,8 @@
1
+ import { IconProps } from '@chakra-ui/react/icon';
2
+ export interface IconNextjsProps extends IconProps {
3
+ size?: '16' | '24';
4
+ }
5
+ declare const IconNextjs: import('react').ForwardRefExoticComponent<IconNextjsProps> & {
6
+ __bitkitIcon: true;
7
+ };
8
+ export default IconNextjs;
@@ -0,0 +1,28 @@
1
+ import { bitkitIcon as n } from "./bitkitIcon.js";
2
+ import m from "../svgs/16x16/icon-nextjs-16.js";
3
+ import c from "../svgs/24x24/icon-nextjs-24.js";
4
+ import { Icon as r } from "@chakra-ui/react/icon";
5
+ import { jsx as t } from "react/jsx-runtime";
6
+ var h = n(function({ size: e = "24", ...i }, o) {
7
+ return e === "16" ? /* @__PURE__ */ t(r, {
8
+ asChild: !0,
9
+ ref: o,
10
+ ...i,
11
+ children: /* @__PURE__ */ t(m, {
12
+ width: "16",
13
+ height: "16"
14
+ })
15
+ }) : /* @__PURE__ */ t(r, {
16
+ asChild: !0,
17
+ ref: o,
18
+ ...i,
19
+ children: /* @__PURE__ */ t(c, {
20
+ width: "24",
21
+ height: "24"
22
+ })
23
+ });
24
+ });
25
+ h.displayName = "IconNextjs";
26
+ export {
27
+ h as default
28
+ };
@@ -0,0 +1,8 @@
1
+ import { IconProps } from '@chakra-ui/react/icon';
2
+ export interface IconPythonProps extends IconProps {
3
+ size?: '16' | '24';
4
+ }
5
+ declare const IconPython: import('react').ForwardRefExoticComponent<IconPythonProps> & {
6
+ __bitkitIcon: true;
7
+ };
8
+ export default IconPython;
@@ -0,0 +1,28 @@
1
+ import { bitkitIcon as h } from "./bitkitIcon.js";
2
+ import m from "../svgs/16x16/icon-python-16.js";
3
+ import c from "../svgs/24x24/icon-python-24.js";
4
+ import { Icon as n } from "@chakra-ui/react/icon";
5
+ import { jsx as o } from "react/jsx-runtime";
6
+ var e = h(function({ size: r = "24", ...t }, i) {
7
+ return r === "16" ? /* @__PURE__ */ o(n, {
8
+ asChild: !0,
9
+ ref: i,
10
+ ...t,
11
+ children: /* @__PURE__ */ o(m, {
12
+ width: "16",
13
+ height: "16"
14
+ })
15
+ }) : /* @__PURE__ */ o(n, {
16
+ asChild: !0,
17
+ ref: i,
18
+ ...t,
19
+ children: /* @__PURE__ */ o(c, {
20
+ width: "24",
21
+ height: "24"
22
+ })
23
+ });
24
+ });
25
+ e.displayName = "IconPython";
26
+ export {
27
+ e as default
28
+ };
@@ -0,0 +1,8 @@
1
+ import { IconProps } from '@chakra-ui/react/icon';
2
+ export interface IconPythonColorProps extends IconProps {
3
+ size?: '16' | '24';
4
+ }
5
+ declare const IconPythonColor: import('react').ForwardRefExoticComponent<IconPythonColorProps> & {
6
+ __bitkitIcon: true;
7
+ };
8
+ export default IconPythonColor;
@@ -0,0 +1,28 @@
1
+ import { bitkitIcon as h } from "./bitkitIcon.js";
2
+ import l from "../svgs/16x16/icon-python-color-16.js";
3
+ import m from "../svgs/24x24/icon-python-color-24.js";
4
+ import { Icon as i } from "@chakra-ui/react/icon";
5
+ import { jsx as o } from "react/jsx-runtime";
6
+ var c = h(function({ size: n = "24", ...r }, t) {
7
+ return n === "16" ? /* @__PURE__ */ o(i, {
8
+ asChild: !0,
9
+ ref: t,
10
+ ...r,
11
+ children: /* @__PURE__ */ o(l, {
12
+ width: "16",
13
+ height: "16"
14
+ })
15
+ }) : /* @__PURE__ */ o(i, {
16
+ asChild: !0,
17
+ ref: t,
18
+ ...r,
19
+ children: /* @__PURE__ */ o(m, {
20
+ width: "24",
21
+ height: "24"
22
+ })
23
+ });
24
+ });
25
+ c.displayName = "IconPythonColor";
26
+ export {
27
+ c as default
28
+ };
@@ -0,0 +1,8 @@
1
+ import { IconProps } from '@chakra-ui/react/icon';
2
+ export interface IconTemplateCodeProps extends IconProps {
3
+ size?: '16' | '24';
4
+ }
5
+ declare const IconTemplateCode: import('react').ForwardRefExoticComponent<IconTemplateCodeProps> & {
6
+ __bitkitIcon: true;
7
+ };
8
+ export default IconTemplateCode;
@@ -0,0 +1,28 @@
1
+ import { bitkitIcon as m } from "./bitkitIcon.js";
2
+ import d from "../svgs/16x16/icon-template-code-16.js";
3
+ import n from "../svgs/24x24/icon-template-code-24.js";
4
+ import { Icon as i } from "@chakra-ui/react/icon";
5
+ import { jsx as e } from "react/jsx-runtime";
6
+ var a = m(function({ size: r = "24", ...o }, t) {
7
+ return r === "16" ? /* @__PURE__ */ e(i, {
8
+ asChild: !0,
9
+ ref: t,
10
+ ...o,
11
+ children: /* @__PURE__ */ e(d, {
12
+ width: "16",
13
+ height: "16"
14
+ })
15
+ }) : /* @__PURE__ */ e(i, {
16
+ asChild: !0,
17
+ ref: t,
18
+ ...o,
19
+ children: /* @__PURE__ */ e(n, {
20
+ width: "24",
21
+ height: "24"
22
+ })
23
+ });
24
+ });
25
+ a.displayName = "IconTemplateCode";
26
+ export {
27
+ a as default
28
+ };
@@ -26,6 +26,9 @@ export { default as IconApple, type IconAppleProps } from './IconApple';
26
26
  export { default as IconAppSettings, type IconAppSettingsProps } from './IconAppSettings';
27
27
  export { default as IconAppStore, type IconAppStoreProps } from './IconAppStore';
28
28
  export { default as IconAppStoreColor, type IconAppStoreColorProps } from './IconAppStoreColor';
29
+ export { default as IconArchive, type IconArchiveProps } from './IconArchive';
30
+ export { default as IconArchiveDelete, type IconArchiveDeleteProps } from './IconArchiveDelete';
31
+ export { default as IconArchiveRestore, type IconArchiveRestoreProps } from './IconArchiveRestore';
29
32
  export { default as IconArrowBackAndDown, type IconArrowBackAndDownProps } from './IconArrowBackAndDown';
30
33
  export { default as IconArrowBackAndUp, type IconArrowBackAndUpProps } from './IconArrowBackAndUp';
31
34
  export { default as IconArrowDown, type IconArrowDownProps } from './IconArrowDown';
@@ -81,6 +84,8 @@ export { default as IconCiFilled, type IconCiFilledProps } from './IconCiFilled'
81
84
  export { default as IconCircle, type IconCircleProps } from './IconCircle';
82
85
  export { default as IconCircleDashed, type IconCircleDashedProps } from './IconCircleDashed';
83
86
  export { default as IconCircleHalfFilled, type IconCircleHalfFilledProps } from './IconCircleHalfFilled';
87
+ export { default as IconClaude, type IconClaudeProps } from './IconClaude';
88
+ export { default as IconClaudeColor, type IconClaudeColorProps } from './IconClaudeColor';
84
89
  export { default as IconClock, type IconClockProps } from './IconClock';
85
90
  export { default as IconCode, type IconCodeProps } from './IconCode';
86
91
  export { default as IconCodePush, type IconCodePushProps } from './IconCodePush';
@@ -199,6 +204,7 @@ export { default as IconMonitorChart, type IconMonitorChartProps } from './IconM
199
204
  export { default as IconMoreHorizontal, type IconMoreHorizontalProps } from './IconMoreHorizontal';
200
205
  export { default as IconMoreVertical, type IconMoreVerticalProps } from './IconMoreVertical';
201
206
  export { default as IconNews, type IconNewsProps } from './IconNews';
207
+ export { default as IconNextjs, type IconNextjsProps } from './IconNextjs';
202
208
  export { default as IconNodejs, type IconNodejsProps } from './IconNodejs';
203
209
  export { default as IconOpenInNew, type IconOpenInNewProps } from './IconOpenInNew';
204
210
  export { default as IconOther, type IconOtherProps } from './IconOther';
@@ -220,6 +226,8 @@ export { default as IconProjectSettings, type IconProjectSettingsProps } from '.
220
226
  export { default as IconPull, type IconPullProps } from './IconPull';
221
227
  export { default as IconPush, type IconPushProps } from './IconPush';
222
228
  export { default as IconPuzzle, type IconPuzzleProps } from './IconPuzzle';
229
+ export { default as IconPython, type IconPythonProps } from './IconPython';
230
+ export { default as IconPythonColor, type IconPythonColorProps } from './IconPythonColor';
223
231
  export { default as IconQuestionCircle, type IconQuestionCircleProps } from './IconQuestionCircle';
224
232
  export { default as IconQuestionCircleFilled, type IconQuestionCircleFilledProps } from './IconQuestionCircleFilled';
225
233
  export { default as IconReact, type IconReactProps } from './IconReact';
@@ -261,6 +269,7 @@ export { default as IconTag, type IconTagProps } from './IconTag';
261
269
  export { default as IconTasks, type IconTasksProps } from './IconTasks';
262
270
  export { default as IconTeams, type IconTeamsProps } from './IconTeams';
263
271
  export { default as IconTeamsColor, type IconTeamsColorProps } from './IconTeamsColor';
272
+ export { default as IconTemplateCode, type IconTemplateCodeProps } from './IconTemplateCode';
264
273
  export { default as IconTerminal, type IconTerminalProps } from './IconTerminal';
265
274
  export { default as IconTestQuarantine, type IconTestQuarantineProps } from './IconTestQuarantine';
266
275
  export { default as IconThemeDarkToggle, type IconThemeDarkToggleProps } from './IconThemeDarkToggle';