neatkit 0.1.0 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (127) hide show
  1. package/LICENSE.md +373 -674
  2. package/README.md +9 -32
  3. package/dist/components/Alert/Alert.d.ts +29 -0
  4. package/dist/components/Alert/index.d.ts +2 -0
  5. package/dist/components/Avatar/Avatar.d.ts +28 -0
  6. package/dist/components/Avatar/index.d.ts +2 -0
  7. package/dist/components/Badge/Badge.d.ts +32 -0
  8. package/dist/components/Badge/index.d.ts +2 -0
  9. package/dist/components/Button/Button.d.ts +58 -8
  10. package/dist/components/Button/index.d.ts +2 -3
  11. package/dist/components/Card/Card.d.ts +40 -0
  12. package/dist/components/Card/index.d.ts +2 -0
  13. package/dist/components/Checkbox/Checkbox.d.ts +35 -0
  14. package/dist/components/Checkbox/index.d.ts +2 -0
  15. package/dist/components/CheckboxGroup/CheckboxGroup.d.ts +62 -0
  16. package/dist/components/CheckboxGroup/contexts/CheckboxGroupContext.d.ts +22 -0
  17. package/dist/components/CheckboxGroup/hooks/useCheckboxGroup.d.ts +7 -0
  18. package/dist/components/CheckboxGroup/index.d.ts +2 -0
  19. package/dist/components/Content/Content.d.ts +58 -0
  20. package/dist/components/Content/hooks/useContentLayout.d.ts +18 -0
  21. package/dist/components/Content/index.d.ts +2 -0
  22. package/dist/components/Content/utils/layout.d.ts +11 -0
  23. package/dist/components/Divider/Divider.d.ts +30 -0
  24. package/dist/components/Divider/index.d.ts +2 -0
  25. package/dist/components/Field/Field.d.ts +61 -0
  26. package/dist/components/Field/index.d.ts +2 -0
  27. package/dist/components/Field/utils/field-control.d.ts +23 -0
  28. package/dist/components/Icon/Icon.d.ts +21 -0
  29. package/dist/components/Icon/icons/ArrowLeftIcon.d.ts +11 -0
  30. package/dist/components/Icon/icons/ArrowRightIcon.d.ts +11 -0
  31. package/dist/components/Icon/icons/ArticlesIcon.d.ts +11 -0
  32. package/dist/components/Icon/icons/AudioIcon.d.ts +11 -0
  33. package/dist/components/Icon/icons/BranchIcon.d.ts +11 -0
  34. package/dist/components/Icon/icons/BurgerIcon.d.ts +11 -0
  35. package/dist/components/Icon/icons/CameraIcon.d.ts +11 -0
  36. package/dist/components/Icon/icons/ChatIcon.d.ts +11 -0
  37. package/dist/components/Icon/icons/CheckmarkIcon.d.ts +11 -0
  38. package/dist/components/Icon/icons/ChevronDownIcon.d.ts +11 -0
  39. package/dist/components/Icon/icons/ChevronLeftIcon.d.ts +11 -0
  40. package/dist/components/Icon/icons/ChevronRightIcon.d.ts +11 -0
  41. package/dist/components/Icon/icons/ChevronUpIcon.d.ts +11 -0
  42. package/dist/components/Icon/icons/CommitIcon.d.ts +11 -0
  43. package/dist/components/Icon/icons/CrossIcon.d.ts +11 -0
  44. package/dist/components/Icon/icons/DownloadIcon.d.ts +11 -0
  45. package/dist/components/Icon/icons/DuplicateIcon.d.ts +11 -0
  46. package/dist/components/Icon/icons/ExitIcon.d.ts +11 -0
  47. package/dist/components/Icon/icons/EyeIcon.d.ts +11 -0
  48. package/dist/components/Icon/icons/EyeOffIcon.d.ts +11 -0
  49. package/dist/components/Icon/icons/FileIcon.d.ts +11 -0
  50. package/dist/components/Icon/icons/FolderIcon.d.ts +11 -0
  51. package/dist/components/Icon/icons/GitIcon.d.ts +11 -0
  52. package/dist/components/Icon/icons/GithubIcon.d.ts +11 -0
  53. package/dist/components/Icon/icons/GlobeIcon.d.ts +11 -0
  54. package/dist/components/Icon/icons/HardwareIcon.d.ts +11 -0
  55. package/dist/components/Icon/icons/HomeIcon.d.ts +11 -0
  56. package/dist/components/Icon/icons/InfoIcon.d.ts +11 -0
  57. package/dist/components/Icon/icons/KeyIcon.d.ts +11 -0
  58. package/dist/components/Icon/icons/LinkedInIcon.d.ts +11 -0
  59. package/dist/components/Icon/icons/MailIcon.d.ts +11 -0
  60. package/dist/components/Icon/icons/MinusIcon.d.ts +11 -0
  61. package/dist/components/Icon/icons/PencilIcon.d.ts +11 -0
  62. package/dist/components/Icon/icons/PlusIcon.d.ts +11 -0
  63. package/dist/components/Icon/icons/ProjectsIcon.d.ts +11 -0
  64. package/dist/components/Icon/icons/QRCodeIcon.d.ts +11 -0
  65. package/dist/components/Icon/icons/RedditIcon.d.ts +11 -0
  66. package/dist/components/Icon/icons/RepositoryIcon.d.ts +11 -0
  67. package/dist/components/Icon/icons/SaveIcon.d.ts +11 -0
  68. package/dist/components/Icon/icons/SignalIcon.d.ts +11 -0
  69. package/dist/components/Icon/icons/TagIcon.d.ts +11 -0
  70. package/dist/components/Icon/icons/UserIcon.d.ts +11 -0
  71. package/dist/components/Icon/icons/WarningIcon.d.ts +11 -0
  72. package/dist/components/Icon/icons/WindowIcon.d.ts +11 -0
  73. package/dist/components/Icon/icons/types.d.ts +3 -0
  74. package/dist/components/Icon/index.d.ts +36 -0
  75. package/dist/components/Icon/utils/registry.d.ts +49 -0
  76. package/dist/components/Input/Input.d.ts +50 -0
  77. package/dist/components/Input/index.d.ts +2 -0
  78. package/dist/components/Modal/Modal.d.ts +62 -0
  79. package/dist/components/Modal/index.d.ts +2 -0
  80. package/dist/components/PinInput/PinInput.d.ts +76 -0
  81. package/dist/components/PinInput/hooks/usePinInput.d.ts +65 -0
  82. package/dist/components/PinInput/index.d.ts +2 -0
  83. package/dist/components/Popover/Popover.d.ts +93 -0
  84. package/dist/components/Popover/index.d.ts +2 -0
  85. package/dist/components/Portal/Portal.d.ts +19 -0
  86. package/dist/components/Portal/contexts/FocusScopeContext.d.ts +7 -0
  87. package/dist/components/Portal/hooks/useDismissableLayer.d.ts +31 -0
  88. package/dist/components/Portal/hooks/useFloatingPosition.d.ts +12 -0
  89. package/dist/components/Portal/hooks/useFocusTrap.d.ts +24 -0
  90. package/dist/components/Portal/hooks/usePresence.d.ts +19 -0
  91. package/dist/components/Portal/hooks/useScrollLock.d.ts +7 -0
  92. package/dist/components/Portal/utils/floating-position.d.ts +26 -0
  93. package/dist/components/Portal/utils/overlay-stack.d.ts +45 -0
  94. package/dist/components/Radio/Radio.d.ts +32 -0
  95. package/dist/components/Radio/index.d.ts +2 -0
  96. package/dist/components/RadioGroup/RadioGroup.d.ts +54 -0
  97. package/dist/components/RadioGroup/contexts/RadioGroupContext.d.ts +18 -0
  98. package/dist/components/RadioGroup/hooks/useRadioGroup.d.ts +7 -0
  99. package/dist/components/RadioGroup/index.d.ts +2 -0
  100. package/dist/components/Select/Select.d.ts +97 -0
  101. package/dist/components/Select/index.d.ts +2 -0
  102. package/dist/components/Skeleton/Skeleton.d.ts +30 -0
  103. package/dist/components/Skeleton/index.d.ts +2 -0
  104. package/dist/components/Spinner/Spinner.d.ts +24 -0
  105. package/dist/components/Spinner/index.d.ts +2 -0
  106. package/dist/components/Surface/Surface.d.ts +15 -0
  107. package/dist/components/Switch/Switch.d.ts +27 -0
  108. package/dist/components/Switch/index.d.ts +2 -0
  109. package/dist/components/Text/Text.d.ts +41 -0
  110. package/dist/components/Text/index.d.ts +2 -0
  111. package/dist/components/TextArea/TextArea.d.ts +40 -0
  112. package/dist/components/TextArea/index.d.ts +2 -0
  113. package/dist/components/Tooltip/Tooltip.d.ts +54 -0
  114. package/dist/components/Tooltip/TooltipProvider.d.ts +24 -0
  115. package/dist/components/Tooltip/index.d.ts +4 -0
  116. package/dist/index.cjs +1 -1
  117. package/dist/index.d.ts +27 -3
  118. package/dist/index.js +3920 -12
  119. package/dist/style.css +1 -1
  120. package/dist/tokens.d.ts +84 -0
  121. package/dist/utils/aria.d.ts +18 -0
  122. package/dist/utils/reference.d.ts +16 -0
  123. package/dist/utils/units.d.ts +33 -0
  124. package/package.json +20 -4
  125. package/dist/components/Button/Button.d.ts.map +0 -1
  126. package/dist/components/Button/index.d.ts.map +0 -1
  127. package/dist/index.d.ts.map +0 -1
@@ -0,0 +1,23 @@
1
+ /** A type representing how a composite control communicates required state. */
2
+ type FieldRequiredCommunication = "group" | "label";
3
+ /** A type representing Field behavior declared by composite controls. */
4
+ type FieldControlMetadata = {
5
+ /** How the composite communicates its required state accessibly. */
6
+ requiredCommunication: FieldRequiredCommunication;
7
+ };
8
+ /**
9
+ * Returns Field metadata declared by a composite control component.
10
+ *
11
+ * @param componentType - The rendered child component type to inspect.
12
+ *
13
+ * @returns The composite Field behavior when the component declares it.
14
+ */
15
+ export declare function getFieldControlMetadata(componentType: unknown): FieldControlMetadata | undefined;
16
+ /**
17
+ * Marks a component as a composite group control rendered by Field.
18
+ *
19
+ * @param component - The component receiving internal Field behavior.
20
+ * @param requiredCommunication - How the control communicates required state.
21
+ */
22
+ export declare function markFieldGroupControl<Component extends object>(component: Component, requiredCommunication: FieldRequiredCommunication): void;
23
+ export {};
@@ -0,0 +1,21 @@
1
+ import { type SVGProps } from "react";
2
+ import { type IconType } from "./utils/registry";
3
+ /** A type representing properties for the Icon component. */
4
+ export type IconProps = Omit<SVGProps<SVGSVGElement>, "children" | "color" | "height" | "width"> & {
5
+ /** The icon graphic rendered by the component. */
6
+ type: IconType;
7
+ /** The width and height applied to the icon. */
8
+ size?: number | string;
9
+ /** The color applied to the icon. */
10
+ color?: string;
11
+ };
12
+ /**
13
+ * Renders an icon graphic selected by type.
14
+ *
15
+ * @param props - The properties that configure the Icon.
16
+ * @param forwardedReference - The reference assigned to the rendered SVG.
17
+ *
18
+ * @returns The selected icon graphic, or null when its type is unavailable.
19
+ */
20
+ declare const Icon: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
21
+ export default Icon;
@@ -0,0 +1,11 @@
1
+ import type { IconGraphicProps } from "./types";
2
+ /**
3
+ * Renders a left arrow icon.
4
+ *
5
+ * @param props - The SVG properties applied to the icon.
6
+ * @param forwardedReference - The reference assigned to the rendered SVG.
7
+ *
8
+ * @returns The rendered icon SVG.
9
+ */
10
+ declare const _default: import("react").ForwardRefExoticComponent<Omit<IconGraphicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import type { IconGraphicProps } from "./types";
2
+ /**
3
+ * Renders a right arrow icon.
4
+ *
5
+ * @param props - The SVG properties applied to the icon.
6
+ * @param forwardedReference - The reference assigned to the rendered SVG.
7
+ *
8
+ * @returns The rendered icon SVG.
9
+ */
10
+ declare const _default: import("react").ForwardRefExoticComponent<Omit<IconGraphicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import type { IconGraphicProps } from "./types";
2
+ /**
3
+ * Renders an articles icon.
4
+ *
5
+ * @param props - The SVG properties applied to the icon.
6
+ * @param forwardedReference - The reference assigned to the rendered SVG.
7
+ *
8
+ * @returns The rendered icon SVG.
9
+ */
10
+ declare const _default: import("react").ForwardRefExoticComponent<Omit<IconGraphicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import type { IconGraphicProps } from "./types";
2
+ /**
3
+ * Renders an audio icon.
4
+ *
5
+ * @param props - The SVG properties applied to the icon.
6
+ * @param forwardedReference - The reference assigned to the rendered SVG.
7
+ *
8
+ * @returns The rendered icon SVG.
9
+ */
10
+ declare const _default: import("react").ForwardRefExoticComponent<Omit<IconGraphicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import type { IconGraphicProps } from "./types";
2
+ /**
3
+ * Renders a branch icon.
4
+ *
5
+ * @param props - The SVG properties applied to the icon.
6
+ * @param forwardedReference - The reference assigned to the rendered SVG.
7
+ *
8
+ * @returns The rendered icon SVG.
9
+ */
10
+ declare const _default: import("react").ForwardRefExoticComponent<Omit<IconGraphicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import type { IconGraphicProps } from "./types";
2
+ /**
3
+ * Renders a burger icon.
4
+ *
5
+ * @param props - The SVG properties applied to the icon.
6
+ * @param forwardedReference - The reference assigned to the rendered SVG.
7
+ *
8
+ * @returns The rendered icon SVG.
9
+ */
10
+ declare const _default: import("react").ForwardRefExoticComponent<Omit<IconGraphicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import type { IconGraphicProps } from "./types";
2
+ /**
3
+ * Renders a camera icon.
4
+ *
5
+ * @param props - The SVG properties applied to the icon.
6
+ * @param forwardedReference - The reference assigned to the rendered SVG.
7
+ *
8
+ * @returns The rendered icon SVG.
9
+ */
10
+ declare const _default: import("react").ForwardRefExoticComponent<Omit<IconGraphicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import type { IconGraphicProps } from "./types";
2
+ /**
3
+ * Renders a chat icon.
4
+ *
5
+ * @param props - The SVG properties applied to the icon.
6
+ * @param forwardedReference - The reference assigned to the rendered SVG.
7
+ *
8
+ * @returns The rendered icon SVG.
9
+ */
10
+ declare const _default: import("react").ForwardRefExoticComponent<Omit<IconGraphicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import type { IconGraphicProps } from "./types";
2
+ /**
3
+ * Renders a Checkmark icon.
4
+ *
5
+ * @param props - The SVG properties applied to the icon.
6
+ * @param forwardedReference - The reference assigned to the rendered SVG.
7
+ *
8
+ * @returns The rendered icon SVG.
9
+ */
10
+ declare const _default: import("react").ForwardRefExoticComponent<Omit<IconGraphicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import type { IconGraphicProps } from "./types";
2
+ /**
3
+ * Renders a downward chevron icon.
4
+ *
5
+ * @param props - The SVG properties applied to the icon.
6
+ * @param forwardedReference - The reference assigned to the rendered SVG.
7
+ *
8
+ * @returns The rendered icon SVG.
9
+ */
10
+ declare const _default: import("react").ForwardRefExoticComponent<Omit<IconGraphicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import type { IconGraphicProps } from "./types";
2
+ /**
3
+ * Renders a leftward chevron icon.
4
+ *
5
+ * @param props - The SVG properties applied to the icon.
6
+ * @param forwardedReference - The reference assigned to the rendered SVG.
7
+ *
8
+ * @returns The rendered icon SVG.
9
+ */
10
+ declare const _default: import("react").ForwardRefExoticComponent<Omit<IconGraphicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import type { IconGraphicProps } from "./types";
2
+ /**
3
+ * Renders a rightward chevron icon.
4
+ *
5
+ * @param props - The SVG properties applied to the icon.
6
+ * @param forwardedReference - The reference assigned to the rendered SVG.
7
+ *
8
+ * @returns The rendered icon SVG.
9
+ */
10
+ declare const _default: import("react").ForwardRefExoticComponent<Omit<IconGraphicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import type { IconGraphicProps } from "./types";
2
+ /**
3
+ * Renders an upward chevron icon.
4
+ *
5
+ * @param props - The SVG properties applied to the icon.
6
+ * @param forwardedReference - The reference assigned to the rendered SVG.
7
+ *
8
+ * @returns The rendered icon SVG.
9
+ */
10
+ declare const _default: import("react").ForwardRefExoticComponent<Omit<IconGraphicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import type { IconGraphicProps } from "./types";
2
+ /**
3
+ * Renders a commit icon.
4
+ *
5
+ * @param props - The SVG properties applied to the icon.
6
+ * @param forwardedReference - The reference assigned to the rendered SVG.
7
+ *
8
+ * @returns The rendered icon SVG.
9
+ */
10
+ declare const _default: import("react").ForwardRefExoticComponent<Omit<IconGraphicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import type { IconGraphicProps } from "./types";
2
+ /**
3
+ * Renders a cross icon.
4
+ *
5
+ * @param props - The SVG properties applied to the icon.
6
+ * @param forwardedReference - The reference assigned to the rendered SVG.
7
+ *
8
+ * @returns The rendered icon SVG.
9
+ */
10
+ declare const _default: import("react").ForwardRefExoticComponent<Omit<IconGraphicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import type { IconGraphicProps } from "./types";
2
+ /**
3
+ * Renders a Download icon.
4
+ *
5
+ * @param props - The SVG properties applied to the icon.
6
+ * @param forwardedReference - The reference assigned to the rendered SVG.
7
+ *
8
+ * @returns The rendered icon SVG.
9
+ */
10
+ declare const _default: import("react").ForwardRefExoticComponent<Omit<IconGraphicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import type { IconGraphicProps } from "./types";
2
+ /**
3
+ * Renders a duplicate icon.
4
+ *
5
+ * @param props - The SVG properties applied to the icon.
6
+ * @param forwardedReference - The reference assigned to the rendered SVG.
7
+ *
8
+ * @returns The rendered icon SVG.
9
+ */
10
+ declare const _default: import("react").ForwardRefExoticComponent<Omit<IconGraphicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import type { IconGraphicProps } from "./types";
2
+ /**
3
+ * Renders an exit icon.
4
+ *
5
+ * @param props - The SVG properties applied to the icon.
6
+ * @param forwardedReference - The reference assigned to the rendered SVG.
7
+ *
8
+ * @returns The rendered icon SVG.
9
+ */
10
+ declare const _default: import("react").ForwardRefExoticComponent<Omit<IconGraphicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import type { IconGraphicProps } from "./types";
2
+ /**
3
+ * Renders an eye icon.
4
+ *
5
+ * @param props - The SVG properties applied to the icon.
6
+ * @param forwardedReference - The reference assigned to the rendered SVG.
7
+ *
8
+ * @returns The rendered icon SVG.
9
+ */
10
+ declare const _default: import("react").ForwardRefExoticComponent<Omit<IconGraphicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import type { IconGraphicProps } from "./types";
2
+ /**
3
+ * Renders a crossed-out eye icon.
4
+ *
5
+ * @param props - The SVG properties applied to the icon.
6
+ * @param forwardedReference - The reference assigned to the rendered SVG.
7
+ *
8
+ * @returns The rendered icon SVG.
9
+ */
10
+ declare const _default: import("react").ForwardRefExoticComponent<Omit<IconGraphicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import type { IconGraphicProps } from "./types";
2
+ /**
3
+ * Renders a file icon.
4
+ *
5
+ * @param props - The SVG properties applied to the icon.
6
+ * @param forwardedReference - The reference assigned to the rendered SVG.
7
+ *
8
+ * @returns The rendered icon SVG.
9
+ */
10
+ declare const _default: import("react").ForwardRefExoticComponent<Omit<IconGraphicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import type { IconGraphicProps } from "./types";
2
+ /**
3
+ * Renders a folder icon.
4
+ *
5
+ * @param props - The SVG properties applied to the icon.
6
+ * @param forwardedReference - The reference assigned to the rendered SVG.
7
+ *
8
+ * @returns The rendered icon SVG.
9
+ */
10
+ declare const _default: import("react").ForwardRefExoticComponent<Omit<IconGraphicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import type { IconGraphicProps } from "./types";
2
+ /**
3
+ * Renders a Git icon.
4
+ *
5
+ * @param props - The SVG properties applied to the icon.
6
+ * @param forwardedReference - The reference assigned to the rendered SVG.
7
+ *
8
+ * @returns The rendered icon SVG.
9
+ */
10
+ declare const _default: import("react").ForwardRefExoticComponent<Omit<IconGraphicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import type { IconGraphicProps } from "./types";
2
+ /**
3
+ * Renders a GitHub icon.
4
+ *
5
+ * @param props - The SVG properties applied to the icon.
6
+ * @param forwardedReference - The reference assigned to the rendered SVG.
7
+ *
8
+ * @returns The rendered icon SVG.
9
+ */
10
+ declare const _default: import("react").ForwardRefExoticComponent<Omit<IconGraphicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import type { IconGraphicProps } from "./types";
2
+ /**
3
+ * Renders a globe icon.
4
+ *
5
+ * @param props - The SVG properties applied to the icon.
6
+ * @param forwardedReference - The reference assigned to the rendered SVG.
7
+ *
8
+ * @returns The rendered icon SVG.
9
+ */
10
+ declare const _default: import("react").ForwardRefExoticComponent<Omit<IconGraphicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import type { IconGraphicProps } from "./types";
2
+ /**
3
+ * Renders a hardware icon.
4
+ *
5
+ * @param props - The SVG properties applied to the icon.
6
+ * @param forwardedReference - The reference assigned to the rendered SVG.
7
+ *
8
+ * @returns The rendered icon SVG.
9
+ */
10
+ declare const _default: import("react").ForwardRefExoticComponent<Omit<IconGraphicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import type { IconGraphicProps } from "./types";
2
+ /**
3
+ * Renders a home icon.
4
+ *
5
+ * @param props - The SVG properties applied to the icon.
6
+ * @param forwardedReference - The reference assigned to the rendered SVG.
7
+ *
8
+ * @returns The rendered icon SVG.
9
+ */
10
+ declare const _default: import("react").ForwardRefExoticComponent<Omit<IconGraphicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import type { IconGraphicProps } from "./types";
2
+ /**
3
+ * Renders an Info icon.
4
+ *
5
+ * @param props - The SVG properties applied to the icon.
6
+ * @param forwardedReference - The reference assigned to the rendered SVG.
7
+ *
8
+ * @returns The rendered icon SVG.
9
+ */
10
+ declare const _default: import("react").ForwardRefExoticComponent<Omit<IconGraphicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import type { IconGraphicProps } from "./types";
2
+ /**
3
+ * Renders a key icon.
4
+ *
5
+ * @param props - The SVG properties applied to the icon.
6
+ * @param forwardedReference - The reference assigned to the rendered SVG.
7
+ *
8
+ * @returns The rendered icon SVG.
9
+ */
10
+ declare const _default: import("react").ForwardRefExoticComponent<Omit<IconGraphicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import type { IconGraphicProps } from "./types";
2
+ /**
3
+ * Renders a LinkedIn icon.
4
+ *
5
+ * @param props - The SVG properties applied to the icon.
6
+ * @param forwardedReference - The reference assigned to the rendered SVG.
7
+ *
8
+ * @returns The rendered icon SVG.
9
+ */
10
+ declare const _default: import("react").ForwardRefExoticComponent<Omit<IconGraphicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import type { IconGraphicProps } from "./types";
2
+ /**
3
+ * Renders a mail icon.
4
+ *
5
+ * @param props - The SVG properties applied to the icon.
6
+ * @param forwardedReference - The reference assigned to the rendered SVG.
7
+ *
8
+ * @returns The rendered icon SVG.
9
+ */
10
+ declare const _default: import("react").ForwardRefExoticComponent<Omit<IconGraphicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import type { IconGraphicProps } from "./types";
2
+ /**
3
+ * Renders a Minus icon.
4
+ *
5
+ * @param props - The SVG properties applied to the icon.
6
+ * @param forwardedReference - The reference assigned to the rendered SVG.
7
+ *
8
+ * @returns The rendered icon SVG.
9
+ */
10
+ declare const _default: import("react").ForwardRefExoticComponent<Omit<IconGraphicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import type { IconGraphicProps } from "./types";
2
+ /**
3
+ * Renders a pencil icon.
4
+ *
5
+ * @param props - The SVG properties applied to the icon.
6
+ * @param forwardedReference - The reference assigned to the rendered SVG.
7
+ *
8
+ * @returns The rendered icon SVG.
9
+ */
10
+ declare const _default: import("react").ForwardRefExoticComponent<Omit<IconGraphicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import type { IconGraphicProps } from "./types";
2
+ /**
3
+ * Renders a Plus icon.
4
+ *
5
+ * @param props - The SVG properties applied to the icon.
6
+ * @param forwardedReference - The reference assigned to the rendered SVG.
7
+ *
8
+ * @returns The rendered icon SVG.
9
+ */
10
+ declare const _default: import("react").ForwardRefExoticComponent<Omit<IconGraphicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import type { IconGraphicProps } from "./types";
2
+ /**
3
+ * Renders a projects icon.
4
+ *
5
+ * @param props - The SVG properties applied to the icon.
6
+ * @param forwardedReference - The reference assigned to the rendered SVG.
7
+ *
8
+ * @returns The rendered icon SVG.
9
+ */
10
+ declare const _default: import("react").ForwardRefExoticComponent<Omit<IconGraphicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import type { IconGraphicProps } from "./types";
2
+ /**
3
+ * Renders a QR code icon.
4
+ *
5
+ * @param props - The SVG properties applied to the icon.
6
+ * @param forwardedReference - The reference assigned to the rendered SVG.
7
+ *
8
+ * @returns The rendered icon SVG.
9
+ */
10
+ declare const _default: import("react").ForwardRefExoticComponent<Omit<IconGraphicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import type { IconGraphicProps } from "./types";
2
+ /**
3
+ * Renders a Reddit icon.
4
+ *
5
+ * @param props - The SVG properties applied to the icon.
6
+ * @param forwardedReference - The reference assigned to the rendered SVG.
7
+ *
8
+ * @returns The rendered icon SVG.
9
+ */
10
+ declare const _default: import("react").ForwardRefExoticComponent<Omit<IconGraphicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import type { IconGraphicProps } from "./types";
2
+ /**
3
+ * Renders a repository icon.
4
+ *
5
+ * @param props - The SVG properties applied to the icon.
6
+ * @param forwardedReference - The reference assigned to the rendered SVG.
7
+ *
8
+ * @returns The rendered icon SVG.
9
+ */
10
+ declare const _default: import("react").ForwardRefExoticComponent<Omit<IconGraphicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import type { IconGraphicProps } from "./types";
2
+ /**
3
+ * Renders a save icon.
4
+ *
5
+ * @param props - The SVG properties applied to the icon.
6
+ * @param forwardedReference - The reference assigned to the rendered SVG.
7
+ *
8
+ * @returns The rendered icon SVG.
9
+ */
10
+ declare const _default: import("react").ForwardRefExoticComponent<Omit<IconGraphicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import type { IconGraphicProps } from "./types";
2
+ /**
3
+ * Renders a signal icon.
4
+ *
5
+ * @param props - The SVG properties applied to the icon.
6
+ * @param forwardedReference - The reference assigned to the rendered SVG.
7
+ *
8
+ * @returns The rendered icon SVG.
9
+ */
10
+ declare const _default: import("react").ForwardRefExoticComponent<Omit<IconGraphicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import type { IconGraphicProps } from "./types";
2
+ /**
3
+ * Renders a tag icon.
4
+ *
5
+ * @param props - The SVG properties applied to the icon.
6
+ * @param forwardedReference - The reference assigned to the rendered SVG.
7
+ *
8
+ * @returns The rendered icon SVG.
9
+ */
10
+ declare const _default: import("react").ForwardRefExoticComponent<Omit<IconGraphicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import type { IconGraphicProps } from "./types";
2
+ /**
3
+ * Renders a user icon.
4
+ *
5
+ * @param props - The SVG properties applied to the icon.
6
+ * @param forwardedReference - The reference assigned to the rendered SVG.
7
+ *
8
+ * @returns The rendered icon SVG.
9
+ */
10
+ declare const _default: import("react").ForwardRefExoticComponent<Omit<IconGraphicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import type { IconGraphicProps } from "./types";
2
+ /**
3
+ * Renders a Warning icon.
4
+ *
5
+ * @param props - The SVG properties applied to the icon.
6
+ * @param forwardedReference - The reference assigned to the rendered SVG.
7
+ *
8
+ * @returns The rendered icon SVG.
9
+ */
10
+ declare const _default: import("react").ForwardRefExoticComponent<Omit<IconGraphicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import type { IconGraphicProps } from "./types";
2
+ /**
3
+ * Renders a window icon.
4
+ *
5
+ * @param props - The SVG properties applied to the icon.
6
+ * @param forwardedReference - The reference assigned to the rendered SVG.
7
+ *
8
+ * @returns The rendered icon SVG.
9
+ */
10
+ declare const _default: import("react").ForwardRefExoticComponent<Omit<IconGraphicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ export default _default;
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from "react";
2
+ /** A type representing properties accepted by an icon SVG graphic. */
3
+ export type IconGraphicProps = SVGProps<SVGSVGElement>;