@fanvue/ui 2.17.0 → 2.19.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 (51) hide show
  1. package/dist/cjs/components/Checkbox/Checkbox.cjs +19 -6
  2. package/dist/cjs/components/Checkbox/Checkbox.cjs.map +1 -1
  3. package/dist/cjs/components/DropdownMenu/DropdownMenu.cjs +189 -11
  4. package/dist/cjs/components/DropdownMenu/DropdownMenu.cjs.map +1 -1
  5. package/dist/cjs/components/Icons/{AiCallIcon.cjs → AICallIcon.cjs} +1 -1
  6. package/dist/cjs/components/Icons/{AiCallIcon.cjs.map → AICallIcon.cjs.map} +1 -1
  7. package/dist/cjs/components/Icons/CardIcon.cjs +8 -7
  8. package/dist/cjs/components/Icons/CardIcon.cjs.map +1 -1
  9. package/dist/cjs/components/Icons/Pin2Icon.cjs +101 -0
  10. package/dist/cjs/components/Icons/Pin2Icon.cjs.map +1 -0
  11. package/dist/cjs/components/Icons/PrivacyIcon.cjs +1 -1
  12. package/dist/cjs/components/Icons/PrivacyIcon.cjs.map +1 -1
  13. package/dist/cjs/components/Icons/ShareIcon.cjs +1 -1
  14. package/dist/cjs/components/Icons/ShareIcon.cjs.map +1 -1
  15. package/dist/cjs/components/Icons/TickCircleIcon.cjs +1 -1
  16. package/dist/cjs/components/Icons/TickCircleIcon.cjs.map +1 -1
  17. package/dist/cjs/components/Icons/ToolsIcon.cjs +1 -1
  18. package/dist/cjs/components/Icons/ToolsIcon.cjs.map +1 -1
  19. package/dist/cjs/components/Table/Table.cjs +66 -46
  20. package/dist/cjs/components/Table/Table.cjs.map +1 -1
  21. package/dist/cjs/components/Table/TablePagination.cjs +7 -7
  22. package/dist/cjs/components/Table/TablePagination.cjs.map +1 -1
  23. package/dist/cjs/index.cjs +8 -2
  24. package/dist/cjs/index.cjs.map +1 -1
  25. package/dist/components/Checkbox/Checkbox.mjs +19 -6
  26. package/dist/components/Checkbox/Checkbox.mjs.map +1 -1
  27. package/dist/components/DropdownMenu/DropdownMenu.mjs +189 -11
  28. package/dist/components/DropdownMenu/DropdownMenu.mjs.map +1 -1
  29. package/dist/components/Icons/{AiCallIcon.mjs → AICallIcon.mjs} +1 -1
  30. package/dist/components/Icons/{AiCallIcon.mjs.map → AICallIcon.mjs.map} +1 -1
  31. package/dist/components/Icons/CardIcon.mjs +8 -7
  32. package/dist/components/Icons/CardIcon.mjs.map +1 -1
  33. package/dist/components/Icons/Pin2Icon.mjs +84 -0
  34. package/dist/components/Icons/Pin2Icon.mjs.map +1 -0
  35. package/dist/components/Icons/PrivacyIcon.mjs +1 -1
  36. package/dist/components/Icons/PrivacyIcon.mjs.map +1 -1
  37. package/dist/components/Icons/ShareIcon.mjs +1 -1
  38. package/dist/components/Icons/ShareIcon.mjs.map +1 -1
  39. package/dist/components/Icons/TickCircleIcon.mjs +1 -1
  40. package/dist/components/Icons/TickCircleIcon.mjs.map +1 -1
  41. package/dist/components/Icons/ToolsIcon.mjs +1 -1
  42. package/dist/components/Icons/ToolsIcon.mjs.map +1 -1
  43. package/dist/components/Table/Table.mjs +66 -46
  44. package/dist/components/Table/Table.mjs.map +1 -1
  45. package/dist/components/Table/TablePagination.mjs +7 -7
  46. package/dist/components/Table/TablePagination.mjs.map +1 -1
  47. package/dist/index.d.ts +237 -31
  48. package/dist/index.mjs +9 -3
  49. package/dist/index.mjs.map +1 -1
  50. package/dist/styles/base.css +2 -0
  51. package/package.json +1 -1
@@ -1 +1 @@
1
- {"version":3,"file":"DropdownMenu.mjs","sources":["../../../src/components/DropdownMenu/DropdownMenu.tsx"],"sourcesContent":["import * as DropdownMenuPrimitive from \"@radix-ui/react-dropdown-menu\";\nimport { useControllableState } from \"@radix-ui/react-use-controllable-state\";\nimport * as React from \"react\";\nimport { cn } from \"../../utils/cn\";\nimport { FLOATING_CONTENT_COLLISION_PADDING } from \"../../utils/floatingContentCollisionPadding\";\n\n// Movement, in CSS px, above which a touch press-and-release counts as a drag.\nconst TAP_MOVEMENT_THRESHOLD_PX = 10;\n\ntype ActiveTap = {\n pointerId: number;\n x: number;\n y: number;\n movedPastThreshold: boolean;\n};\n\n// Lets DropdownMenuTrigger toggle the menu directly so it can gate on touch\n// movement — see radix-ui/primitives#1912.\nconst ToggleOpenContext = React.createContext<\n ((updater: (prev: boolean) => boolean) => void) | null\n>(null);\n\n/** Props for the {@link DropdownMenu} root component. */\nexport interface DropdownMenuProps\n extends React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Root> {}\n\n/** Root component that manages open/close state for a dropdown menu. */\nexport function DropdownMenu({\n open: openProp,\n defaultOpen,\n onOpenChange,\n children,\n ...props\n}: DropdownMenuProps) {\n const [open = false, setOpen] = useControllableState({\n prop: openProp,\n defaultProp: defaultOpen ?? false,\n onChange: onOpenChange,\n });\n\n return (\n <ToggleOpenContext.Provider value={setOpen}>\n <DropdownMenuPrimitive.Root open={open} onOpenChange={setOpen} {...props}>\n {children}\n </DropdownMenuPrimitive.Root>\n </ToggleOpenContext.Provider>\n );\n}\n\n/** Props for the {@link DropdownMenuTrigger} component. */\nexport type DropdownMenuTriggerProps = React.ComponentPropsWithoutRef<\n typeof DropdownMenuPrimitive.Trigger\n>;\n\n/**\n * The element that toggles the dropdown menu when clicked.\n *\n * On touch devices, the menu only opens if the press-and-release stays within\n * a small movement threshold. A drag that incidentally ends over the trigger\n * (common when scrolling a feed on Android Chrome) is ignored. Mouse and\n * keyboard interactions are unchanged.\n */\nexport const DropdownMenuTrigger = React.forwardRef<\n React.ComponentRef<typeof DropdownMenuPrimitive.Trigger>,\n DropdownMenuTriggerProps\n>((props, ref) => {\n const toggleOpen = React.useContext(ToggleOpenContext);\n const tapRef = React.useRef<ActiveTap | null>(null);\n\n // Used outside our DropdownMenu wrapper — fall through to Radix defaults.\n if (toggleOpen === null) {\n return <DropdownMenuPrimitive.Trigger {...props} ref={ref} />;\n }\n\n return (\n <DropdownMenuPrimitive.Trigger\n {...props}\n ref={ref}\n onPointerDown={(event) => {\n props.onPointerDown?.(event);\n if (event.pointerType === \"mouse\" || props.disabled) return;\n // Keep pointerup / pointercancel on this element if the finger drifts off.\n // Optional because jsdom (used in tests) doesn't implement it.\n event.currentTarget.setPointerCapture?.(event.pointerId);\n tapRef.current = {\n pointerId: event.pointerId,\n x: event.clientX,\n y: event.clientY,\n movedPastThreshold: false,\n };\n // preventDefault stops Radix's pointerdown open path via composeEventHandlers.\n event.preventDefault();\n }}\n onPointerMove={(event) => {\n props.onPointerMove?.(event);\n const tap = tapRef.current;\n if (tap === null || event.pointerId !== tap.pointerId || tap.movedPastThreshold) {\n return;\n }\n const dx = event.clientX - tap.x;\n const dy = event.clientY - tap.y;\n if (Math.hypot(dx, dy) > TAP_MOVEMENT_THRESHOLD_PX) {\n tap.movedPastThreshold = true;\n }\n }}\n onPointerUp={(event) => {\n props.onPointerUp?.(event);\n const tap = tapRef.current;\n if (tap === null || event.pointerId !== tap.pointerId) return;\n const wasDrag = tap.movedPastThreshold;\n tapRef.current = null;\n if (!wasDrag && !props.disabled) {\n toggleOpen((prev) => !prev);\n }\n }}\n onPointerCancel={(event) => {\n props.onPointerCancel?.(event);\n const tap = tapRef.current;\n if (tap !== null && event.pointerId === tap.pointerId) {\n tapRef.current = null;\n }\n }}\n />\n );\n});\nDropdownMenuTrigger.displayName = \"DropdownMenuTrigger\";\n\n/** Props for the {@link DropdownMenuContent} component. */\nexport interface DropdownMenuContentProps\n extends React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Content> {}\n\n/**\n * The positioned content panel rendered inside a portal.\n *\n * Override the portal z-index per-instance via `style={{ zIndex: 1500 }}` or\n * globally with the `--fanvue-ui-portal-z-index` CSS custom property.\n *\n * @example\n * ```tsx\n * <DropdownMenu>\n * <DropdownMenuTrigger asChild>\n * <Button>Open</Button>\n * </DropdownMenuTrigger>\n * <DropdownMenuContent>\n * <DropdownMenuItem>Option 1</DropdownMenuItem>\n * <DropdownMenuItem>Option 2</DropdownMenuItem>\n * </DropdownMenuContent>\n * </DropdownMenu>\n * ```\n */\nexport const DropdownMenuContent = React.forwardRef<\n React.ComponentRef<typeof DropdownMenuPrimitive.Content>,\n DropdownMenuContentProps\n>(\n (\n {\n className,\n style,\n sideOffset = 4,\n collisionPadding = FLOATING_CONTENT_COLLISION_PADDING,\n ...props\n },\n ref,\n ) => (\n <DropdownMenuPrimitive.Portal>\n <DropdownMenuPrimitive.Content\n ref={ref}\n sideOffset={sideOffset}\n collisionPadding={collisionPadding}\n className={cn(\n \"w-max min-w-(--radix-dropdown-menu-trigger-width) max-w-(--radix-dropdown-menu-content-available-width) overflow-y-auto rounded-xs border border-neutral-alphas-200 bg-bg-primary p-1 shadow-lg\",\n \"data-[state=open]:animate-in data-[state=open]:fade-in-0 data-[state=open]:zoom-in-95\",\n \"data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95\",\n \"data-[side=top]:slide-in-from-bottom-2 data-[side=bottom]:slide-in-from-top-2\",\n \"data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2\",\n className,\n )}\n style={{\n zIndex: \"var(--fanvue-ui-portal-z-index, 50)\",\n maxHeight: \"var(--radix-dropdown-menu-content-available-height)\",\n ...style,\n }}\n {...props}\n />\n </DropdownMenuPrimitive.Portal>\n ),\n);\nDropdownMenuContent.displayName = \"DropdownMenuContent\";\n\n/** Props for the {@link DropdownMenuGroup} component. */\nexport type DropdownMenuGroupProps = React.ComponentPropsWithoutRef<\n typeof DropdownMenuPrimitive.Group\n>;\n\n/** Groups related menu items. Accepts an optional `DropdownMenuLabel`. */\nexport const DropdownMenuGroup = DropdownMenuPrimitive.Group;\nDropdownMenuGroup.displayName = \"DropdownMenuGroup\";\n\n/** Props for the {@link DropdownMenuLabel} component. */\nexport interface DropdownMenuLabelProps\n extends React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Label> {}\n\n/** A label for a group of items. Not focusable or selectable. */\nexport const DropdownMenuLabel = React.forwardRef<\n React.ComponentRef<typeof DropdownMenuPrimitive.Label>,\n DropdownMenuLabelProps\n>(({ className, ...props }, ref) => (\n <DropdownMenuPrimitive.Label\n ref={ref}\n className={cn(\"typography-medium-body-xs px-2 py-1.5 text-content-secondary\", className)}\n {...props}\n />\n));\nDropdownMenuLabel.displayName = \"DropdownMenuLabel\";\n\n/** Available sizes for a dropdown menu item. */\nexport type DropdownMenuItemSize = \"sm\" | \"md\";\n\nexport interface DropdownMenuItemProps\n extends React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Item> {\n /** Height of the menu item row. @default \"sm\" */\n size?: DropdownMenuItemSize;\n /** Whether the item uses destructive (error) styling. */\n destructive?: boolean;\n /** Icon rendered before the label. */\n leadingIcon?: React.ReactNode;\n /** Icon rendered after the label. */\n trailingIcon?: React.ReactNode;\n /** Whether the item is in a selected state. */\n selected?: boolean;\n}\n\n/**\n * An individual item within a {@link DropdownMenuContent}.\n *\n * @example\n * ```tsx\n * <DropdownMenuItem>Edit profile</DropdownMenuItem>\n * <DropdownMenuItem destructive>Delete</DropdownMenuItem>\n * <DropdownMenuItem leadingIcon={<EditIcon />}>Edit</DropdownMenuItem>\n *\n * // As a link\n * <DropdownMenuItem asChild>\n * <a href=\"/settings\">Settings</a>\n * </DropdownMenuItem>\n * ```\n */\nexport const DropdownMenuItem = React.forwardRef<\n React.ComponentRef<typeof DropdownMenuPrimitive.Item>,\n DropdownMenuItemProps\n>(\n (\n {\n size = \"sm\",\n destructive,\n leadingIcon,\n trailingIcon,\n selected,\n className,\n children,\n asChild,\n ...props\n },\n ref,\n ) => {\n const itemClassName = cn(\n \"flex w-full cursor-pointer items-center gap-1 rounded px-2 outline-none\",\n \"data-[disabled]:cursor-not-allowed data-[disabled]:opacity-50\",\n \"data-[highlighted]:bg-neutral-alphas-100\",\n size === \"sm\" ? \"min-h-[34px] py-1\" : \"min-h-[40px] py-1.5\",\n size === \"sm\" ? \"typography-medium-body-sm\" : \"typography-medium-body-md\",\n destructive && \"text-error-content\",\n selected && \"bg-success-surface\",\n className,\n );\n\n if (asChild) {\n return (\n <DropdownMenuPrimitive.Item ref={ref} asChild className={itemClassName} {...props}>\n {children}\n </DropdownMenuPrimitive.Item>\n );\n }\n\n return (\n <DropdownMenuPrimitive.Item ref={ref} className={itemClassName} {...props}>\n {leadingIcon}\n <span className=\"flex-1\">{children}</span>\n {trailingIcon}\n </DropdownMenuPrimitive.Item>\n );\n },\n);\nDropdownMenuItem.displayName = \"DropdownMenuItem\";\n\n/** Props for the {@link DropdownMenuSeparator} component. */\nexport interface DropdownMenuSeparatorProps\n extends React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Separator> {}\n\n/** Visual separator between groups of items. */\nexport const DropdownMenuSeparator = React.forwardRef<\n React.ComponentRef<typeof DropdownMenuPrimitive.Separator>,\n DropdownMenuSeparatorProps\n>(({ className, ...props }, ref) => (\n <DropdownMenuPrimitive.Separator\n ref={ref}\n className={cn(\"my-1 h-px bg-neutral-alphas-200\", className)}\n {...props}\n />\n));\nDropdownMenuSeparator.displayName = \"DropdownMenuSeparator\";\n"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"DropdownMenu.mjs","sources":["../../../src/components/DropdownMenu/DropdownMenu.tsx"],"sourcesContent":["import * as DropdownMenuPrimitive from \"@radix-ui/react-dropdown-menu\";\nimport { useControllableState } from \"@radix-ui/react-use-controllable-state\";\nimport * as React from \"react\";\nimport { cn } from \"../../utils/cn\";\nimport { FLOATING_CONTENT_COLLISION_PADDING } from \"../../utils/floatingContentCollisionPadding\";\nimport { IconButton } from \"../IconButton/IconButton\";\nimport { CloseIcon } from \"../Icons/CloseIcon\";\nimport { SearchIcon } from \"../Icons/SearchIcon\";\n\n// Movement, in CSS px, above which a touch press-and-release counts as a drag.\nconst TAP_MOVEMENT_THRESHOLD_PX = 10;\n\n// Keys that the menu must keep handling even when focus is inside a child\n// input — arrows move the highlight into the list, Tab leaves the menu, and\n// Enter / Escape close it.\nconst NAVIGATION_KEYS = new Set([\n \"ArrowDown\",\n \"ArrowUp\",\n \"ArrowLeft\",\n \"ArrowRight\",\n \"Escape\",\n \"Tab\",\n \"Enter\",\n]);\n\ntype ActiveTap = {\n pointerId: number;\n x: number;\n y: number;\n movedPastThreshold: boolean;\n};\n\n// Lets DropdownMenuTrigger toggle the menu directly so it can gate on touch\n// movement — see radix-ui/primitives#1912.\nconst ToggleOpenContext = React.createContext<\n ((updater: (prev: boolean) => boolean) => void) | null\n>(null);\n\n/** Props for the {@link DropdownMenu} root component. */\nexport interface DropdownMenuProps\n extends React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Root> {}\n\n/** Root component that manages open/close state for a dropdown menu. */\nexport function DropdownMenu({\n open: openProp,\n defaultOpen,\n onOpenChange,\n children,\n ...props\n}: DropdownMenuProps) {\n const [open = false, setOpen] = useControllableState({\n prop: openProp,\n defaultProp: defaultOpen ?? false,\n onChange: onOpenChange,\n });\n\n return (\n <ToggleOpenContext.Provider value={setOpen}>\n <DropdownMenuPrimitive.Root open={open} onOpenChange={setOpen} {...props}>\n {children}\n </DropdownMenuPrimitive.Root>\n </ToggleOpenContext.Provider>\n );\n}\n\n/** Props for the {@link DropdownMenuTrigger} component. */\nexport type DropdownMenuTriggerProps = React.ComponentPropsWithoutRef<\n typeof DropdownMenuPrimitive.Trigger\n>;\n\n/**\n * The element that toggles the dropdown menu when clicked.\n *\n * On touch devices, the menu only opens if the press-and-release stays within\n * a small movement threshold. A drag that incidentally ends over the trigger\n * (common when scrolling a feed on Android Chrome) is ignored. Mouse and\n * keyboard interactions are unchanged.\n */\nexport const DropdownMenuTrigger = React.forwardRef<\n React.ComponentRef<typeof DropdownMenuPrimitive.Trigger>,\n DropdownMenuTriggerProps\n>((props, ref) => {\n const toggleOpen = React.useContext(ToggleOpenContext);\n const tapRef = React.useRef<ActiveTap | null>(null);\n\n // Used outside our DropdownMenu wrapper — fall through to Radix defaults.\n if (toggleOpen === null) {\n return <DropdownMenuPrimitive.Trigger {...props} ref={ref} />;\n }\n\n return (\n <DropdownMenuPrimitive.Trigger\n {...props}\n ref={ref}\n onPointerDown={(event) => {\n props.onPointerDown?.(event);\n if (event.pointerType === \"mouse\" || props.disabled) return;\n // Keep pointerup / pointercancel on this element if the finger drifts off.\n // Optional because jsdom (used in tests) doesn't implement it.\n event.currentTarget.setPointerCapture?.(event.pointerId);\n tapRef.current = {\n pointerId: event.pointerId,\n x: event.clientX,\n y: event.clientY,\n movedPastThreshold: false,\n };\n // preventDefault stops Radix's pointerdown open path via composeEventHandlers.\n event.preventDefault();\n }}\n onPointerMove={(event) => {\n props.onPointerMove?.(event);\n const tap = tapRef.current;\n if (tap === null || event.pointerId !== tap.pointerId || tap.movedPastThreshold) {\n return;\n }\n const dx = event.clientX - tap.x;\n const dy = event.clientY - tap.y;\n if (Math.hypot(dx, dy) > TAP_MOVEMENT_THRESHOLD_PX) {\n tap.movedPastThreshold = true;\n }\n }}\n onPointerUp={(event) => {\n props.onPointerUp?.(event);\n const tap = tapRef.current;\n if (tap === null || event.pointerId !== tap.pointerId) return;\n const wasDrag = tap.movedPastThreshold;\n tapRef.current = null;\n if (!wasDrag && !props.disabled) {\n toggleOpen((prev) => !prev);\n }\n }}\n onPointerCancel={(event) => {\n props.onPointerCancel?.(event);\n const tap = tapRef.current;\n if (tap !== null && event.pointerId === tap.pointerId) {\n tapRef.current = null;\n }\n }}\n />\n );\n});\nDropdownMenuTrigger.displayName = \"DropdownMenuTrigger\";\n\n/** Props for the {@link DropdownMenuContent} component. */\nexport interface DropdownMenuContentProps\n extends React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Content> {}\n\n/**\n * The positioned content panel rendered inside a portal.\n *\n * Override the portal z-index per-instance via `style={{ zIndex: 1500 }}` or\n * globally with the `--fanvue-ui-portal-z-index` CSS custom property.\n *\n * @example\n * ```tsx\n * <DropdownMenu>\n * <DropdownMenuTrigger asChild>\n * <Button>Open</Button>\n * </DropdownMenuTrigger>\n * <DropdownMenuContent>\n * <DropdownMenuItem>Option 1</DropdownMenuItem>\n * <DropdownMenuItem>Option 2</DropdownMenuItem>\n * </DropdownMenuContent>\n * </DropdownMenu>\n * ```\n */\nexport const DropdownMenuContent = React.forwardRef<\n React.ComponentRef<typeof DropdownMenuPrimitive.Content>,\n DropdownMenuContentProps\n>(\n (\n {\n className,\n style,\n sideOffset = 4,\n collisionPadding = FLOATING_CONTENT_COLLISION_PADDING,\n ...props\n },\n ref,\n ) => (\n <DropdownMenuPrimitive.Portal>\n <DropdownMenuPrimitive.Content\n ref={ref}\n sideOffset={sideOffset}\n collisionPadding={collisionPadding}\n className={cn(\n \"w-max min-w-(--radix-dropdown-menu-trigger-width) max-w-(--radix-dropdown-menu-content-available-width) overflow-y-auto rounded-sm border border-neutral-alphas-200 bg-surface-primary p-1 text-content-primary shadow-lg\",\n \"data-[state=open]:animate-in data-[state=open]:fade-in-0 data-[state=open]:zoom-in-95\",\n \"data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95\",\n \"data-[side=top]:slide-in-from-bottom-2 data-[side=bottom]:slide-in-from-top-2\",\n \"data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2\",\n className,\n )}\n style={{\n zIndex: \"var(--fanvue-ui-portal-z-index, 50)\",\n maxHeight: \"var(--radix-dropdown-menu-content-available-height)\",\n ...style,\n }}\n {...props}\n />\n </DropdownMenuPrimitive.Portal>\n ),\n);\nDropdownMenuContent.displayName = \"DropdownMenuContent\";\n\n/** Props for the {@link DropdownMenuGroup} component. */\nexport type DropdownMenuGroupProps = React.ComponentPropsWithoutRef<\n typeof DropdownMenuPrimitive.Group\n>;\n\n/** Groups related menu items. Accepts an optional `DropdownMenuLabel`. */\nexport const DropdownMenuGroup = DropdownMenuPrimitive.Group;\nDropdownMenuGroup.displayName = \"DropdownMenuGroup\";\n\n/** Vertical placement of a {@link DropdownMenuLabel} within its group. */\nexport type DropdownMenuLabelPosition = \"default\" | \"top\";\n\n/** Props for the {@link DropdownMenuLabel} component. */\nexport interface DropdownMenuLabelProps\n extends React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Label> {\n /**\n * Vertical placement within the surrounding group. `\"top\"` is used for the\n * first label directly under a header; `\"default\"` adds extra top padding to\n * separate it from preceding items. @default \"default\"\n */\n position?: DropdownMenuLabelPosition;\n}\n\n/** A non-interactive label that groups related items within a menu. */\nexport const DropdownMenuLabel = React.forwardRef<\n React.ComponentRef<typeof DropdownMenuPrimitive.Label>,\n DropdownMenuLabelProps\n>(({ className, position = \"default\", ...props }, ref) => (\n <DropdownMenuPrimitive.Label\n ref={ref}\n className={cn(\n \"typography-regular-body-sm flex items-center px-3 text-content-secondary\",\n position === \"top\" ? \"py-2\" : \"pb-2 pt-4\",\n className,\n )}\n {...props}\n />\n));\nDropdownMenuLabel.displayName = \"DropdownMenuLabel\";\n\n/**\n * Height preset for a dropdown menu item.\n *\n * `\"40\"` (default) and `\"32\"` are the v2 numeric tokens that mirror the Figma\n * design system. `\"sm\"` and `\"md\"` are deprecated aliases retained for\n * backwards compatibility — `\"sm\"` maps to `\"32\"`, `\"md\"` maps to `\"40\"`.\n */\nexport type DropdownMenuItemSize =\n | \"40\"\n | \"32\"\n /** @deprecated Use `\"32\"` instead. */\n | \"sm\"\n /** @deprecated Use `\"40\"` instead. */\n | \"md\";\n\nconst SIZE_NORMALIZED: Record<DropdownMenuItemSize, \"40\" | \"32\"> = {\n \"40\": \"40\",\n md: \"40\",\n \"32\": \"32\",\n sm: \"32\",\n};\n\nconst ITEM_SIZE_CLASSES: Record<\"40\" | \"32\", string> = {\n \"40\": \"min-h-10 py-2 typography-regular-body-lg\",\n \"32\": \"min-h-8 py-[7px] typography-regular-body-md\",\n};\n\nconst ITEM_SELECTED_TYPOGRAPHY: Record<\"40\" | \"32\", string> = {\n \"40\": \"typography-semibold-body-lg\",\n \"32\": \"typography-semibold-body-md\",\n};\n\nexport interface DropdownMenuItemProps\n extends React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Item> {\n /** Height of the menu item row. @default \"40\" */\n size?: DropdownMenuItemSize;\n /** Applies the destructive (error) treatment. Use for irreversible actions. @default false */\n destructive?: boolean;\n /** Icon (or other node) rendered before the label. */\n leadingIcon?: React.ReactNode;\n /** Icon (or other node) rendered after the label. */\n trailingIcon?: React.ReactNode;\n /** Marks the item as the current selection in a single-select menu. @default false */\n selected?: boolean;\n}\n\n/**\n * An individual item within a {@link DropdownMenuContent}.\n *\n * @example\n * ```tsx\n * <DropdownMenuItem>Edit profile</DropdownMenuItem>\n * <DropdownMenuItem destructive>Delete</DropdownMenuItem>\n * <DropdownMenuItem leadingIcon={<EditIcon />}>Edit</DropdownMenuItem>\n *\n * // As a link\n * <DropdownMenuItem asChild>\n * <a href=\"/settings\">Settings</a>\n * </DropdownMenuItem>\n * ```\n */\nexport const DropdownMenuItem = React.forwardRef<\n React.ComponentRef<typeof DropdownMenuPrimitive.Item>,\n DropdownMenuItemProps\n>(\n (\n {\n size = \"40\",\n destructive,\n leadingIcon,\n trailingIcon,\n selected,\n className,\n children,\n asChild,\n ...props\n },\n ref,\n ) => {\n const normalizedSize = SIZE_NORMALIZED[size];\n const itemClassName = cn(\n \"flex w-full cursor-pointer items-center gap-2 rounded-xs px-3 outline-none\",\n ITEM_SIZE_CLASSES[normalizedSize],\n \"data-[highlighted]:bg-neutral-alphas-50\",\n \"data-[disabled]:cursor-not-allowed data-[disabled]:text-content-disabled\",\n destructive && \"text-error-content\",\n selected && [\n \"bg-buttons-primary text-content-primary-inverted\",\n \"data-[highlighted]:bg-buttons-primary\",\n ITEM_SELECTED_TYPOGRAPHY[normalizedSize],\n ],\n className,\n );\n\n if (asChild) {\n return (\n <DropdownMenuPrimitive.Item ref={ref} asChild className={itemClassName} {...props}>\n {children}\n </DropdownMenuPrimitive.Item>\n );\n }\n\n return (\n <DropdownMenuPrimitive.Item ref={ref} className={itemClassName} {...props}>\n {leadingIcon}\n <span className=\"min-w-0 flex-1 truncate\">{children}</span>\n {trailingIcon}\n </DropdownMenuPrimitive.Item>\n );\n },\n);\nDropdownMenuItem.displayName = \"DropdownMenuItem\";\n\n/** Props for the {@link DropdownMenuSeparator} component. */\nexport interface DropdownMenuSeparatorProps\n extends React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Separator> {}\n\n/** Visual separator between groups of items. */\nexport const DropdownMenuSeparator = React.forwardRef<\n React.ComponentRef<typeof DropdownMenuPrimitive.Separator>,\n DropdownMenuSeparatorProps\n>(({ className, ...props }, ref) => (\n <DropdownMenuPrimitive.Separator\n ref={ref}\n className={cn(\"my-1 h-px bg-neutral-alphas-200\", className)}\n {...props}\n />\n));\nDropdownMenuSeparator.displayName = \"DropdownMenuSeparator\";\n\n/** Header type. `\"default\"` shows a title; `\"search\"` shows a search input. */\nexport type DropdownMenuHeaderType = \"default\" | \"search\";\n\n/** Header height preset. Matches the menu item sizing scale. */\nexport type DropdownMenuHeaderSize = \"40\" | \"32\";\n\n/** Search-input configuration for {@link DropdownMenuHeader} when `type=\"search\"`. */\nexport interface DropdownMenuHeaderSearchProps {\n /** Controlled value of the search input. */\n value?: string;\n /** Uncontrolled default value. */\n defaultValue?: string;\n /** Fires when the input value changes. */\n onChange?: (value: string) => void;\n /** Placeholder text shown when the input is empty. @default \"Search…\" */\n placeholder?: string;\n /** Accessible label for the search input. @default \"Search\" */\n \"aria-label\"?: string;\n}\n\nexport interface DropdownMenuHeaderProps extends React.HTMLAttributes<HTMLDivElement> {\n /** Visual type. `\"default\"` shows a title; `\"search\"` shows a search input. @default \"default\" */\n type?: DropdownMenuHeaderType;\n /** Height preset for the header row. @default \"40\" */\n size?: DropdownMenuHeaderSize;\n /** Title text shown when `type=\"default\"`. Ignored if `children` is provided. */\n title?: string;\n /** Configuration for the embedded search input when `type=\"search\"`. */\n searchProps?: DropdownMenuHeaderSearchProps;\n /** Whether to render the close icon button on the right. @default true */\n showClose?: boolean;\n /** Fires when the close icon button is activated. */\n onClose?: () => void;\n /** Accessible label for the close button. @default \"Close menu\" */\n closeLabel?: string;\n}\n\n/**\n * Optional header rendered at the top of a {@link DropdownMenuContent}. Use\n * `type=\"default\"` to title the menu, or `type=\"search\"` to embed a search\n * input for filtering long lists.\n *\n * Renders an inset separator beneath the row so it slots cleanly above the\n * first group of items.\n *\n * @example\n * ```tsx\n * <DropdownMenuContent>\n * <DropdownMenuHeader title=\"Sort by\" onClose={() => setOpen(false)} />\n * <DropdownMenuItem>Newest</DropdownMenuItem>\n * <DropdownMenuItem>Oldest</DropdownMenuItem>\n * </DropdownMenuContent>\n * ```\n */\nexport const DropdownMenuHeader = React.forwardRef<HTMLDivElement, DropdownMenuHeaderProps>(\n (\n {\n type = \"default\",\n size = \"40\",\n title,\n searchProps,\n showClose = true,\n onClose,\n closeLabel = \"Close menu\",\n className,\n children,\n ...props\n },\n ref,\n ) => {\n const titleTypography =\n size === \"32\" ? \"typography-semibold-body-md\" : \"typography-semibold-body-lg\";\n const toggleOpen = React.useContext(ToggleOpenContext);\n\n const handleClose = () => {\n onClose?.();\n // Also dismiss the Radix menu when used in uncontrolled mode — otherwise\n // the close button would look broken to consumers that don't wire up\n // `open` / `onOpenChange` themselves.\n toggleOpen?.(() => false);\n };\n\n return (\n <div\n ref={ref}\n className={cn(\n \"flex flex-col px-1 pt-1 mb-1\",\n // Search needs an 8px gap between the input and the divider; the\n // default (title) variant uses 4px because the title baseline sits\n // closer to the divider naturally.\n type === \"search\" ? \"gap-2\" : \"gap-1\",\n className,\n )}\n {...props}\n >\n <div className=\"flex items-center gap-4 pl-2\">\n {type === \"default\" ? (\n <div className={cn(\"min-w-0 flex-1 truncate text-content-primary\", titleTypography)}>\n {children ?? title}\n </div>\n ) : (\n <SearchInput {...searchProps} />\n )}\n {showClose && (\n <IconButton\n variant=\"tertiary\"\n size=\"32\"\n icon={<CloseIcon />}\n onClick={handleClose}\n aria-label={closeLabel}\n />\n )}\n </div>\n <DropdownMenuSeparator className=\"my-0\" />\n </div>\n );\n },\n);\nDropdownMenuHeader.displayName = \"DropdownMenuHeader\";\n\nfunction SearchInput({\n value,\n defaultValue,\n onChange,\n placeholder = \"Search\\u2026\",\n \"aria-label\": ariaLabel = \"Search\",\n}: DropdownMenuHeaderSearchProps = {}) {\n return (\n <label\n className={cn(\n \"flex min-w-0 flex-1 items-center gap-2 rounded-xs border border-border-primary\",\n \"bg-neutral-alphas-50 px-3 py-1 text-content-primary\",\n \"focus-within:shadow-focus-ring focus-within:outline-none\",\n )}\n >\n <SearchIcon className=\"size-4 shrink-0 text-content-tertiary\" aria-hidden=\"true\" />\n <input\n type=\"search\"\n className={cn(\n \"typography-regular-body-lg min-w-0 flex-1 bg-transparent outline-none\",\n \"placeholder:text-content-tertiary\",\n )}\n value={value}\n defaultValue={defaultValue}\n placeholder={placeholder}\n aria-label={ariaLabel}\n onChange={(event) => onChange?.(event.target.value)}\n // Radix DropdownMenu listens for keystrokes on Content for its\n // typeahead (typing letters jumps focus to a matching item). That\n // listener steals focus from the input after the first letter, so we\n // stop character keys from bubbling. Navigation keys (arrows / Tab /\n // Escape / Enter) are still allowed through so the user can leave the\n // input for the list or close the menu. Pointer events are stopped so\n // clicking back into the input doesn't fight the menu's focus\n // management either.\n onKeyDown={(event) => {\n if (!NAVIGATION_KEYS.has(event.key)) event.stopPropagation();\n }}\n onPointerDown={(event) => event.stopPropagation()}\n onMouseDown={(event) => event.stopPropagation()}\n />\n </label>\n );\n}\n\n/** Props for the {@link DropdownMenuRadioGroup} component. */\nexport interface DropdownMenuRadioGroupProps\n extends React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.RadioGroup> {}\n\n/**\n * Groups {@link DropdownMenuRadioItem} children so they behave as a\n * single-select set. Controlled via `value`/`onValueChange`.\n *\n * @example\n * ```tsx\n * <DropdownMenuRadioGroup value={sort} onValueChange={setSort}>\n * <DropdownMenuRadioItem value=\"newest\">Newest first</DropdownMenuRadioItem>\n * <DropdownMenuRadioItem value=\"oldest\">Oldest first</DropdownMenuRadioItem>\n * </DropdownMenuRadioGroup>\n * ```\n */\nexport const DropdownMenuRadioGroup = DropdownMenuPrimitive.RadioGroup;\n\n/** Height preset for a {@link DropdownMenuRadioItem}. */\nexport type DropdownMenuRadioItemSize = \"40\";\n\nexport interface DropdownMenuRadioItemProps\n extends React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.RadioItem> {\n /** Optional secondary text shown below the title. */\n helper?: string;\n /** Height of the item row. @default \"40\" */\n size?: DropdownMenuRadioItemSize;\n}\n\n/**\n * A single radio-style choice within a {@link DropdownMenuRadioGroup}. Shows\n * a circular indicator that fills when selected, plus an optional helper line\n * underneath the title.\n */\nexport const DropdownMenuRadioItem = React.forwardRef<\n React.ComponentRef<typeof DropdownMenuPrimitive.RadioItem>,\n DropdownMenuRadioItemProps\n>(({ className, children, helper, size: _size = \"40\", ...props }, ref) => {\n return (\n <DropdownMenuPrimitive.RadioItem\n ref={ref}\n className={cn(\n \"group flex w-full cursor-pointer items-start gap-3 rounded-xs px-4 py-2 outline-none\",\n \"data-[highlighted]:bg-neutral-alphas-50\",\n \"data-[disabled]:cursor-not-allowed data-[disabled]:text-content-disabled\",\n \"data-[state=checked]:bg-buttons-primary data-[state=checked]:text-content-primary-inverted\",\n \"data-[state=checked]:data-[highlighted]:bg-buttons-primary\",\n className,\n )}\n {...props}\n >\n <span\n className={cn(\n \"mt-1 flex size-4 shrink-0 items-center justify-center rounded-full border border-icons-primary\",\n \"group-data-[disabled]:border-content-disabled\",\n \"group-data-[state=checked]:border-icons-primary-inverted\",\n )}\n aria-hidden=\"true\"\n >\n <DropdownMenuPrimitive.ItemIndicator asChild>\n <span className=\"size-2 rounded-full bg-content-primary-inverted\" />\n </DropdownMenuPrimitive.ItemIndicator>\n </span>\n <span className=\"flex min-w-0 flex-1 flex-col gap-1\">\n <span className=\"typography-semibold-body-lg truncate\">{children}</span>\n {helper && (\n <span\n className={cn(\n \"typography-regular-body-sm text-content-secondary\",\n \"group-data-[state=checked]:text-content-primary-inverted\",\n \"group-data-[disabled]:text-content-disabled\",\n )}\n >\n {helper}\n </span>\n )}\n </span>\n </DropdownMenuPrimitive.RadioItem>\n );\n});\nDropdownMenuRadioItem.displayName = \"DropdownMenuRadioItem\";\n"],"names":[],"mappings":"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"}
@@ -33,4 +33,4 @@ AICallIcon.displayName = "AICallIcon";
33
33
  export {
34
34
  AICallIcon
35
35
  };
36
- //# sourceMappingURL=AiCallIcon.mjs.map
36
+ //# sourceMappingURL=AICallIcon.mjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"AiCallIcon.mjs","sources":["../../../src/components/Icons/AiCallIcon.tsx"],"sourcesContent":["import * as React from \"react\";\nimport { BaseIcon } from \"./BaseIcon\";\nimport type { BaseIconProps, IconVariants } from \"./types\";\n\nconst VARIANTS: IconVariants = {\n 24: {\n outlined: [\n {\n d: \"M18.31 9.26c-.4 0-.74-.27-.83-.66l-.23-.97c-.1-.42-.42-.74-.84-.84l-.97-.23a.846.846 0 0 1-.66-.83c0-.4.27-.74.66-.83l.97-.23c.42-.1.74-.42.84-.84l.23-.97c.09-.39.43-.66.83-.66s.74.27.83.66l.23.97c.1.42.42.74.84.84l.97.23c.38.09.66.43.66.83s-.27.74-.66.83l-.97.23c-.42.1-.74.42-.84.84l-.23.97c-.09.39-.43.66-.83.66m-.64-3.52c.25.17.47.39.64.64.17-.25.39-.47.64-.64-.25-.17-.47-.39-.64-.64-.17.25-.39.47-.64.64m.06 17.51c-1.18 0-2.43-.29-3.71-.84-1.26-.54-2.52-1.26-3.75-2.16s-2.42-1.91-3.53-3.01a30 30 0 0 1-3-3.52c-.9-1.26-1.62-2.51-2.14-3.72C1.06 8.71.79 7.46.79 6.28c0-.81.15-1.59.43-2.3.29-.75.76-1.43 1.39-2.02.8-.79 1.71-1.19 2.7-1.19.41 0 .82.09 1.17.26.4.18.74.47.99.84L9.9 5.29c.22.3.38.59.5.89.13.31.2.62.2.92 0 .39-.11.78-.33 1.13-.16.28-.4.58-.7.89l-.73.76s.03.07.04.1c.13.22.37.59.86 1.17.51.59 1 1.12 1.48 1.62.64.62 1.14 1.09 1.62 1.5.6.5.99.75 1.22.87l.1.04.7-.75q.48-.48.93-.72c.57-.35 1.29-.41 2.02-.11q.405.165.87.48l3.48 2.47c.38.26.66.59.83.98.16.41.23.75.23 1.12 0 .5-.11.99-.33 1.46s-.49.88-.84 1.25a5.45 5.45 0 0 1-1.99 1.43c-.72.3-1.51.46-2.33.46M5.29 2.26c-.59 0-1.13.25-1.65.77-.48.45-.82.95-1.03 1.49-.22.54-.33 1.13-.33 1.75 0 .98.23 2.04.7 3.14.47 1.11 1.14 2.26 1.97 3.43.84 1.15 1.8 2.28 2.85 3.34 1.05 1.04 2.18 2 3.35 2.86 1.14.83 2.3 1.5 3.46 1.99 1.8.77 3.49.94 4.88.36.54-.22 1.01-.56 1.45-1.05.24-.27.43-.56.59-.89.13-.27.19-.54.19-.82 0-.18-.04-.34-.11-.54-.05-.11-.15-.22-.31-.33l-3.48-2.47c-.21-.14-.41-.25-.58-.33-.28-.11-.47-.12-.71.03-.21.11-.4.26-.61.48l-.8.79c-.39.39-1.01.48-1.48.31l-.28-.12c-.43-.22-.93-.58-1.49-1.06-.51-.43-1.03-.92-1.71-1.58-.52-.53-1.03-1.08-1.56-1.7-.49-.58-.85-1.08-1.07-1.47l-.13-.31c-.06-.23-.08-.36-.08-.5 0-.37.13-.7.39-.95l.79-.82c.21-.21.37-.41.48-.59.09-.14.12-.26.12-.38a.8.8 0 0 0-.09-.34 3 3 0 0 0-.34-.59L6.23 2.73c-.11-.15-.24-.26-.4-.34-.17-.08-.35-.13-.54-.13\",\n },\n ],\n filled: [\n {\n d: \"M9.08 17.03c-.41.41-1.06.41-1.48.01-.12-.12-.23-.22-.35-.34a29.4 29.4 0 0 1-2.93-3.43c-.86-1.2-1.55-2.39-2.06-3.58-.49-1.2-.74-2.34-.74-3.43 0-.71.13-1.39.38-2.02.25-.64.65-1.23 1.21-1.75.67-.66 1.41-.99 2.18-.99.29 0 .59.06.85.19.27.13.51.31.7.59l2.43 3.43c.19.26.33.5.42.73.09.22.15.44.15.64 0 .25-.07.5-.22.74-.14.24-.34.49-.59.74l-.8.83a.55.55 0 0 0-.17.42q0 .12.03.24c.03.08.06.15.08.21.19.35.51.8.98 1.34.47.55.98 1.1 1.52 1.66.1.1.22.21.33.31.42.41.43 1.08.01 1.5zm13.39 1.61c0 .29-.05.6-.16.89-.03.08-.06.17-.1.25-.18.38-.41.73-.71 1.07-.51.57-1.08.98-1.72 1.24-.01 0-.02.01-.03.01-.62.25-1.29.39-2.01.39-1.07 0-2.21-.25-3.42-.77-1.21-.51-2.41-1.21-3.61-2.08-.22-.16-.44-.33-.66-.49a.624.624 0 0 1-.05-.94l2.6-2.6c.2-.2.5-.24.74-.11.33.18.62.38.82.41.18.02.31-.06.43-.18l.8-.79c.26-.26.51-.46.75-.59.24-.15.48-.22.74-.22.2 0 .41.04.64.14.23.09.47.23.73.41l3.47 2.46c.27.19.46.41.58.67.1.26.17.53.17.83m-.48-13.11c0 .07-.04.23-.23.29l-.98.27c-.85.23-1.49.87-1.72 1.72l-.26.96c-.06.22-.23.24-.31.24s-.25-.02-.31-.24l-.26-.97c-.23-.84-.88-1.48-1.72-1.71l-.97-.26c-.21-.06-.23-.24-.23-.31 0-.08.02-.26.23-.32l.98-.26c.84-.24 1.48-.88 1.71-1.72l.28-1.02c.07-.17.23-.2.29-.2s.23.02.29.18l.28 1.03c.23.84.88 1.48 1.72 1.72l1 .28c.2.08.21.26.21.32\",\n },\n ],\n },\n 32: {\n outlined: [\n {\n d: \"M24.414 12.347c-.534 0-.987-.36-1.107-.88L23 10.173a1.5 1.5 0 0 0-1.12-1.12l-1.293-.306c-.52-.12-.88-.574-.88-1.107s.36-.987.88-1.107l1.293-.306A1.5 1.5 0 0 0 23 5.107l.307-1.294c.12-.52.573-.88 1.107-.88.533 0 .986.36 1.106.88l.307 1.294a1.5 1.5 0 0 0 1.12 1.12l1.293.306c.507.12.88.574.88 1.107s-.36.987-.88 1.107l-1.293.306a1.5 1.5 0 0 0-1.12 1.12l-.307 1.294c-.12.52-.573.88-1.106.88m-.854-4.694c.334.227.627.52.854.854.226-.334.52-.627.853-.854a3.3 3.3 0 0 1-.853-.853c-.227.333-.52.627-.854.853M23.64 31c-1.573 0-3.24-.387-4.947-1.12-1.68-.72-3.36-1.68-5-2.88a42 42 0 0 1-4.706-4.013 40 40 0 0 1-4-4.694c-1.2-1.68-2.16-3.346-2.854-4.96-.72-1.72-1.08-3.386-1.08-4.96 0-1.08.2-2.12.574-3.066.386-1 1.013-1.907 1.853-2.694 1.067-1.053 2.28-1.586 3.6-1.586.547 0 1.093.12 1.56.346.533.24.987.627 1.32 1.12l3.24 4.56c.293.4.507.787.667 1.187.173.413.266.827.266 1.227 0 .52-.146 1.04-.44 1.506-.213.374-.533.774-.933 1.187l-.973 1.013s.04.094.053.134c.174.293.494.786 1.147 1.56.68.786 1.333 1.493 1.973 2.16.853.826 1.52 1.453 2.16 2 .8.666 1.32 1 1.627 1.16l.133.053.933-1q.64-.64 1.24-.96c.76-.467 1.72-.547 2.694-.147q.54.22 1.16.64l4.64 3.294c.506.346.88.786 1.106 1.306.214.547.307 1 .307 1.494 0 .666-.147 1.32-.44 1.946a6.2 6.2 0 0 1-1.12 1.667 7.3 7.3 0 0 1-2.653 1.907c-.96.4-2.014.613-3.107.613M7.053 3.013c-.786 0-1.506.334-2.2 1.027-.64.6-1.093 1.267-1.373 1.987a6.2 6.2 0 0 0-.44 2.333c0 1.307.307 2.72.933 4.187.627 1.48 1.52 3.013 2.627 4.573a39 39 0 0 0 3.8 4.453 40 40 0 0 0 4.467 3.814c1.52 1.106 3.066 2 4.613 2.653 2.4 1.027 4.653 1.253 6.507.48.72-.293 1.346-.747 1.933-1.4a5.1 5.1 0 0 0 .787-1.187c.173-.36.253-.72.253-1.093 0-.24-.053-.453-.147-.72-.066-.147-.2-.293-.413-.44l-4.64-3.293a6 6 0 0 0-.773-.44c-.374-.147-.627-.16-.947.04-.28.146-.533.346-.813.64L20.16 21.68c-.52.52-1.347.64-1.973.413l-.374-.16c-.573-.293-1.24-.773-1.986-1.413-.68-.573-1.374-1.227-2.28-2.107a44 44 0 0 1-2.08-2.266c-.654-.774-1.133-1.44-1.427-1.96l-.173-.414c-.08-.306-.107-.48-.107-.666 0-.494.173-.934.52-1.267l1.054-1.093c.28-.28.493-.547.64-.787a.9.9 0 0 0 .16-.507c0-.066-.014-.226-.12-.453a4 4 0 0 0-.454-.787L8.307 3.64a1.45 1.45 0 0 0-.534-.453 1.7 1.7 0 0 0-.72-.174\",\n },\n ],\n filled: [\n {\n d: \"M12.107 22.707a1.404 1.404 0 0 1-1.974.013c-.16-.16-.306-.293-.466-.453a39 39 0 0 1-3.907-4.574c-1.147-1.6-2.067-3.186-2.747-4.773-.653-1.6-.986-3.12-.986-4.573 0-.947.173-1.854.506-2.694A6.3 6.3 0 0 1 4.147 3.32C5.04 2.44 6.027 2 7.053 2c.387 0 .787.08 1.134.253.36.174.68.414.933.787l3.24 4.573c.253.347.44.667.56.974.12.293.2.586.2.853 0 .333-.093.667-.293.987a5 5 0 0 1-.787.986l-1.067 1.107a.73.73 0 0 0-.226.56q0 .16.04.32c.04.107.08.2.106.28.254.467.68 1.067 1.307 1.787a50 50 0 0 0 2.027 2.213c.133.133.293.28.44.413a1.4 1.4 0 0 1 .013 2zm17.853 2.146c0 .387-.067.8-.213 1.187-.04.107-.08.227-.134.333a6 6 0 0 1-.946 1.427c-.68.76-1.44 1.306-2.294 1.653-.013 0-.026.014-.04.014a7.1 7.1 0 0 1-2.68.52c-1.426 0-2.946-.334-4.56-1.027-1.613-.68-3.213-1.614-4.813-2.774-.293-.213-.587-.44-.88-.653a.832.832 0 0 1-.067-1.253l3.467-3.467a.83.83 0 0 1 .987-.146c.44.24.826.506 1.093.546.24.027.413-.08.573-.24l1.067-1.053c.347-.347.68-.614 1-.787.32-.2.64-.293.987-.293.266 0 .546.053.853.186.307.12.627.307.973.547l4.627 3.28c.36.253.613.547.773.893.134.347.227.707.227 1.107m-.64-17.479a.415.415 0 0 1-.307.386l-1.306.36a3.22 3.22 0 0 0-2.294 2.294l-.346 1.28c-.08.293-.307.32-.414.32a.4.4 0 0 1-.413-.32l-.347-1.294A3.25 3.25 0 0 0 21.6 8.12l-1.293-.346c-.28-.08-.307-.32-.307-.414 0-.106.027-.346.307-.426l1.306-.347a3.27 3.27 0 0 0 2.28-2.293l.374-1.36a.43.43 0 0 1 .386-.267c.08 0 .307.027.387.24l.373 1.373a3.29 3.29 0 0 0 2.294 2.294l1.333.373c.267.107.28.347.28.427\",\n },\n ],\n },\n};\n\n/** Props for {@link AICallIcon}. See {@link BaseIconProps} for the shared shape. */\nexport type AICallIconProps = BaseIconProps;\n\n/**\n * AI Call icon. Renders at sizes 16, 24, or 32 px with outlined and filled variants.\n *\n * @example\n * ```tsx\n * <AICallIcon size={24} filled />\n * ```\n */\nexport const AICallIcon = React.forwardRef<SVGSVGElement, AICallIconProps>((props, ref) => (\n <BaseIcon ref={ref} variants={VARIANTS} {...props} />\n));\n\nAICallIcon.displayName = \"AICallIcon\";\n"],"names":[],"mappings":";;;;AAIA,MAAM,WAAyB;AAAA,EAC7B,IAAI;AAAA,IACF,UAAU;AAAA,MACR;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,IAEF,QAAQ;AAAA,MACN;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,EACF;AAAA,EAEF,IAAI;AAAA,IACF,UAAU;AAAA,MACR;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,IAEF,QAAQ;AAAA,MACN;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,EACF;AAEJ;AAaO,MAAM,aAAa,MAAM,WAA2C,CAAC,OAAO,QACjF,oBAAC,UAAA,EAAS,KAAU,UAAU,UAAW,GAAG,OAAO,CACpD;AAED,WAAW,cAAc;"}
1
+ {"version":3,"file":"AICallIcon.mjs","sources":["../../../src/components/Icons/AICallIcon.tsx"],"sourcesContent":["import * as React from \"react\";\nimport { BaseIcon } from \"./BaseIcon\";\nimport type { BaseIconProps, IconVariants } from \"./types\";\n\nconst VARIANTS: IconVariants = {\n 24: {\n outlined: [\n {\n d: \"M18.31 9.26c-.4 0-.74-.27-.83-.66l-.23-.97c-.1-.42-.42-.74-.84-.84l-.97-.23a.846.846 0 0 1-.66-.83c0-.4.27-.74.66-.83l.97-.23c.42-.1.74-.42.84-.84l.23-.97c.09-.39.43-.66.83-.66s.74.27.83.66l.23.97c.1.42.42.74.84.84l.97.23c.38.09.66.43.66.83s-.27.74-.66.83l-.97.23c-.42.1-.74.42-.84.84l-.23.97c-.09.39-.43.66-.83.66m-.64-3.52c.25.17.47.39.64.64.17-.25.39-.47.64-.64-.25-.17-.47-.39-.64-.64-.17.25-.39.47-.64.64m.06 17.51c-1.18 0-2.43-.29-3.71-.84-1.26-.54-2.52-1.26-3.75-2.16s-2.42-1.91-3.53-3.01a30 30 0 0 1-3-3.52c-.9-1.26-1.62-2.51-2.14-3.72C1.06 8.71.79 7.46.79 6.28c0-.81.15-1.59.43-2.3.29-.75.76-1.43 1.39-2.02.8-.79 1.71-1.19 2.7-1.19.41 0 .82.09 1.17.26.4.18.74.47.99.84L9.9 5.29c.22.3.38.59.5.89.13.31.2.62.2.92 0 .39-.11.78-.33 1.13-.16.28-.4.58-.7.89l-.73.76s.03.07.04.1c.13.22.37.59.86 1.17.51.59 1 1.12 1.48 1.62.64.62 1.14 1.09 1.62 1.5.6.5.99.75 1.22.87l.1.04.7-.75q.48-.48.93-.72c.57-.35 1.29-.41 2.02-.11q.405.165.87.48l3.48 2.47c.38.26.66.59.83.98.16.41.23.75.23 1.12 0 .5-.11.99-.33 1.46s-.49.88-.84 1.25a5.45 5.45 0 0 1-1.99 1.43c-.72.3-1.51.46-2.33.46M5.29 2.26c-.59 0-1.13.25-1.65.77-.48.45-.82.95-1.03 1.49-.22.54-.33 1.13-.33 1.75 0 .98.23 2.04.7 3.14.47 1.11 1.14 2.26 1.97 3.43.84 1.15 1.8 2.28 2.85 3.34 1.05 1.04 2.18 2 3.35 2.86 1.14.83 2.3 1.5 3.46 1.99 1.8.77 3.49.94 4.88.36.54-.22 1.01-.56 1.45-1.05.24-.27.43-.56.59-.89.13-.27.19-.54.19-.82 0-.18-.04-.34-.11-.54-.05-.11-.15-.22-.31-.33l-3.48-2.47c-.21-.14-.41-.25-.58-.33-.28-.11-.47-.12-.71.03-.21.11-.4.26-.61.48l-.8.79c-.39.39-1.01.48-1.48.31l-.28-.12c-.43-.22-.93-.58-1.49-1.06-.51-.43-1.03-.92-1.71-1.58-.52-.53-1.03-1.08-1.56-1.7-.49-.58-.85-1.08-1.07-1.47l-.13-.31c-.06-.23-.08-.36-.08-.5 0-.37.13-.7.39-.95l.79-.82c.21-.21.37-.41.48-.59.09-.14.12-.26.12-.38a.8.8 0 0 0-.09-.34 3 3 0 0 0-.34-.59L6.23 2.73c-.11-.15-.24-.26-.4-.34-.17-.08-.35-.13-.54-.13\",\n },\n ],\n filled: [\n {\n d: \"M9.08 17.03c-.41.41-1.06.41-1.48.01-.12-.12-.23-.22-.35-.34a29.4 29.4 0 0 1-2.93-3.43c-.86-1.2-1.55-2.39-2.06-3.58-.49-1.2-.74-2.34-.74-3.43 0-.71.13-1.39.38-2.02.25-.64.65-1.23 1.21-1.75.67-.66 1.41-.99 2.18-.99.29 0 .59.06.85.19.27.13.51.31.7.59l2.43 3.43c.19.26.33.5.42.73.09.22.15.44.15.64 0 .25-.07.5-.22.74-.14.24-.34.49-.59.74l-.8.83a.55.55 0 0 0-.17.42q0 .12.03.24c.03.08.06.15.08.21.19.35.51.8.98 1.34.47.55.98 1.1 1.52 1.66.1.1.22.21.33.31.42.41.43 1.08.01 1.5zm13.39 1.61c0 .29-.05.6-.16.89-.03.08-.06.17-.1.25-.18.38-.41.73-.71 1.07-.51.57-1.08.98-1.72 1.24-.01 0-.02.01-.03.01-.62.25-1.29.39-2.01.39-1.07 0-2.21-.25-3.42-.77-1.21-.51-2.41-1.21-3.61-2.08-.22-.16-.44-.33-.66-.49a.624.624 0 0 1-.05-.94l2.6-2.6c.2-.2.5-.24.74-.11.33.18.62.38.82.41.18.02.31-.06.43-.18l.8-.79c.26-.26.51-.46.75-.59.24-.15.48-.22.74-.22.2 0 .41.04.64.14.23.09.47.23.73.41l3.47 2.46c.27.19.46.41.58.67.1.26.17.53.17.83m-.48-13.11c0 .07-.04.23-.23.29l-.98.27c-.85.23-1.49.87-1.72 1.72l-.26.96c-.06.22-.23.24-.31.24s-.25-.02-.31-.24l-.26-.97c-.23-.84-.88-1.48-1.72-1.71l-.97-.26c-.21-.06-.23-.24-.23-.31 0-.08.02-.26.23-.32l.98-.26c.84-.24 1.48-.88 1.71-1.72l.28-1.02c.07-.17.23-.2.29-.2s.23.02.29.18l.28 1.03c.23.84.88 1.48 1.72 1.72l1 .28c.2.08.21.26.21.32\",\n },\n ],\n },\n 32: {\n outlined: [\n {\n d: \"M24.414 12.347c-.534 0-.987-.36-1.107-.88L23 10.173a1.5 1.5 0 0 0-1.12-1.12l-1.293-.306c-.52-.12-.88-.574-.88-1.107s.36-.987.88-1.107l1.293-.306A1.5 1.5 0 0 0 23 5.107l.307-1.294c.12-.52.573-.88 1.107-.88.533 0 .986.36 1.106.88l.307 1.294a1.5 1.5 0 0 0 1.12 1.12l1.293.306c.507.12.88.574.88 1.107s-.36.987-.88 1.107l-1.293.306a1.5 1.5 0 0 0-1.12 1.12l-.307 1.294c-.12.52-.573.88-1.106.88m-.854-4.694c.334.227.627.52.854.854.226-.334.52-.627.853-.854a3.3 3.3 0 0 1-.853-.853c-.227.333-.52.627-.854.853M23.64 31c-1.573 0-3.24-.387-4.947-1.12-1.68-.72-3.36-1.68-5-2.88a42 42 0 0 1-4.706-4.013 40 40 0 0 1-4-4.694c-1.2-1.68-2.16-3.346-2.854-4.96-.72-1.72-1.08-3.386-1.08-4.96 0-1.08.2-2.12.574-3.066.386-1 1.013-1.907 1.853-2.694 1.067-1.053 2.28-1.586 3.6-1.586.547 0 1.093.12 1.56.346.533.24.987.627 1.32 1.12l3.24 4.56c.293.4.507.787.667 1.187.173.413.266.827.266 1.227 0 .52-.146 1.04-.44 1.506-.213.374-.533.774-.933 1.187l-.973 1.013s.04.094.053.134c.174.293.494.786 1.147 1.56.68.786 1.333 1.493 1.973 2.16.853.826 1.52 1.453 2.16 2 .8.666 1.32 1 1.627 1.16l.133.053.933-1q.64-.64 1.24-.96c.76-.467 1.72-.547 2.694-.147q.54.22 1.16.64l4.64 3.294c.506.346.88.786 1.106 1.306.214.547.307 1 .307 1.494 0 .666-.147 1.32-.44 1.946a6.2 6.2 0 0 1-1.12 1.667 7.3 7.3 0 0 1-2.653 1.907c-.96.4-2.014.613-3.107.613M7.053 3.013c-.786 0-1.506.334-2.2 1.027-.64.6-1.093 1.267-1.373 1.987a6.2 6.2 0 0 0-.44 2.333c0 1.307.307 2.72.933 4.187.627 1.48 1.52 3.013 2.627 4.573a39 39 0 0 0 3.8 4.453 40 40 0 0 0 4.467 3.814c1.52 1.106 3.066 2 4.613 2.653 2.4 1.027 4.653 1.253 6.507.48.72-.293 1.346-.747 1.933-1.4a5.1 5.1 0 0 0 .787-1.187c.173-.36.253-.72.253-1.093 0-.24-.053-.453-.147-.72-.066-.147-.2-.293-.413-.44l-4.64-3.293a6 6 0 0 0-.773-.44c-.374-.147-.627-.16-.947.04-.28.146-.533.346-.813.64L20.16 21.68c-.52.52-1.347.64-1.973.413l-.374-.16c-.573-.293-1.24-.773-1.986-1.413-.68-.573-1.374-1.227-2.28-2.107a44 44 0 0 1-2.08-2.266c-.654-.774-1.133-1.44-1.427-1.96l-.173-.414c-.08-.306-.107-.48-.107-.666 0-.494.173-.934.52-1.267l1.054-1.093c.28-.28.493-.547.64-.787a.9.9 0 0 0 .16-.507c0-.066-.014-.226-.12-.453a4 4 0 0 0-.454-.787L8.307 3.64a1.45 1.45 0 0 0-.534-.453 1.7 1.7 0 0 0-.72-.174\",\n },\n ],\n filled: [\n {\n d: \"M12.107 22.707a1.404 1.404 0 0 1-1.974.013c-.16-.16-.306-.293-.466-.453a39 39 0 0 1-3.907-4.574c-1.147-1.6-2.067-3.186-2.747-4.773-.653-1.6-.986-3.12-.986-4.573 0-.947.173-1.854.506-2.694A6.3 6.3 0 0 1 4.147 3.32C5.04 2.44 6.027 2 7.053 2c.387 0 .787.08 1.134.253.36.174.68.414.933.787l3.24 4.573c.253.347.44.667.56.974.12.293.2.586.2.853 0 .333-.093.667-.293.987a5 5 0 0 1-.787.986l-1.067 1.107a.73.73 0 0 0-.226.56q0 .16.04.32c.04.107.08.2.106.28.254.467.68 1.067 1.307 1.787a50 50 0 0 0 2.027 2.213c.133.133.293.28.44.413a1.4 1.4 0 0 1 .013 2zm17.853 2.146c0 .387-.067.8-.213 1.187-.04.107-.08.227-.134.333a6 6 0 0 1-.946 1.427c-.68.76-1.44 1.306-2.294 1.653-.013 0-.026.014-.04.014a7.1 7.1 0 0 1-2.68.52c-1.426 0-2.946-.334-4.56-1.027-1.613-.68-3.213-1.614-4.813-2.774-.293-.213-.587-.44-.88-.653a.832.832 0 0 1-.067-1.253l3.467-3.467a.83.83 0 0 1 .987-.146c.44.24.826.506 1.093.546.24.027.413-.08.573-.24l1.067-1.053c.347-.347.68-.614 1-.787.32-.2.64-.293.987-.293.266 0 .546.053.853.186.307.12.627.307.973.547l4.627 3.28c.36.253.613.547.773.893.134.347.227.707.227 1.107m-.64-17.479a.415.415 0 0 1-.307.386l-1.306.36a3.22 3.22 0 0 0-2.294 2.294l-.346 1.28c-.08.293-.307.32-.414.32a.4.4 0 0 1-.413-.32l-.347-1.294A3.25 3.25 0 0 0 21.6 8.12l-1.293-.346c-.28-.08-.307-.32-.307-.414 0-.106.027-.346.307-.426l1.306-.347a3.27 3.27 0 0 0 2.28-2.293l.374-1.36a.43.43 0 0 1 .386-.267c.08 0 .307.027.387.24l.373 1.373a3.29 3.29 0 0 0 2.294 2.294l1.333.373c.267.107.28.347.28.427\",\n },\n ],\n },\n};\n\n/** Props for {@link AICallIcon}. See {@link BaseIconProps} for the shared shape. */\nexport type AICallIconProps = BaseIconProps;\n\n/**\n * AI Call icon. Renders at sizes 16, 24, or 32 px with outlined and filled variants.\n *\n * @example\n * ```tsx\n * <AICallIcon size={24} filled />\n * ```\n */\nexport const AICallIcon = React.forwardRef<SVGSVGElement, AICallIconProps>((props, ref) => (\n <BaseIcon ref={ref} variants={VARIANTS} {...props} />\n));\n\nAICallIcon.displayName = \"AICallIcon\";\n"],"names":[],"mappings":";;;;AAIA,MAAM,WAAyB;AAAA,EAC7B,IAAI;AAAA,IACF,UAAU;AAAA,MACR;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,IAEF,QAAQ;AAAA,MACN;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,EACF;AAAA,EAEF,IAAI;AAAA,IACF,UAAU;AAAA,MACR;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,IAEF,QAAQ;AAAA,MACN;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,EACF;AAEJ;AAaO,MAAM,aAAa,MAAM,WAA2C,CAAC,OAAO,QACjF,oBAAC,UAAA,EAAS,KAAU,UAAU,UAAW,GAAG,OAAO,CACpD;AAED,WAAW,cAAc;"}
@@ -9,12 +9,12 @@ const VARIANTS = {
9
9
  d: "M11.333 14.167H4.667c-2.434 0-3.834-1.4-3.834-3.834V5.667c0-2.434 1.4-3.834 3.834-3.834h6.666c2.434 0 3.834 1.4 3.834 3.834v4.666c0 2.434-1.4 3.834-3.834 3.834M4.667 2.833c-1.907 0-2.834.927-2.834 2.834v4.666c0 1.907.927 2.834 2.834 2.834h6.666c1.907 0 2.834-.927 2.834-2.834V5.667c0-1.907-.927-2.834-2.834-2.834z"
10
10
  },
11
11
  {
12
- d: "M8 10.5a2.5 2.5 0 0 1 0-5 2.5 2.5 0 0 1 0 5m0-4c-.827 0-1.5.673-1.5 1.5S7.173 9.5 8 9.5 9.5 8.827 9.5 8 8.827 6.5 8 6.5m4.667-1.333h-2a.504.504 0 0 1-.5-.5c0-.274.226-.5.5-.5h2c.273 0 .5.226.5.5 0 .273-.227.5-.5.5m-7.334 6.666h-2a.504.504 0 0 1-.5-.5c0-.273.227-.5.5-.5h2c.274 0 .5.227.5.5 0 .274-.226.5-.5.5"
12
+ d: "M1 6h14v1H1zm4.333 5.833h-2a.504.504 0 0 1-.5-.5c0-.273.227-.5.5-.5h2c.274 0 .5.227.5.5 0 .274-.226.5-.5.5"
13
13
  }
14
14
  ],
15
15
  filled: [
16
16
  {
17
- d: "M11.333 2.333H4.667c-2 0-3.334 1-3.334 3.334v4.666c0 2.334 1.334 3.334 3.334 3.334h6.666c2 0 3.334-1 3.334-3.334V5.667c0-2.334-1.334-3.334-3.334-3.334m-6 9.5h-2a.504.504 0 0 1-.5-.5c0-.273.227-.5.5-.5h2c.274 0 .5.227.5.5 0 .274-.226.5-.5.5M8 10c-1.107 0-2-.893-2-2s.893-2 2-2 2 .893 2 2-.893 2-2 2m4.667-4.833h-2a.504.504 0 0 1-.5-.5c0-.274.226-.5.5-.5h2c.273 0 .5.226.5.5 0 .273-.227.5-.5.5"
17
+ d: "M14.667 10.333c0 2.334-1.334 3.333-3.334 3.333H4.667c-2 0-3.334-1-3.334-3.333V7h13.334zm-11.334.5c-.273 0-.5.227-.5.5 0 .274.227.5.5.5h2c.273 0 .5-.226.5-.5 0-.273-.227-.5-.5-.5zm8-8.5c2 0 3.334 1 3.334 3.333V6H1.333v-.334c0-2.333 1.334-3.333 3.334-3.333z"
18
18
  }
19
19
  ]
20
20
  },
@@ -24,12 +24,12 @@ const VARIANTS = {
24
24
  d: "M17 21.25H7c-3.65 0-5.75-2.1-5.75-5.75v-7c0-3.65 2.1-5.75 5.75-5.75h10c3.65 0 5.75 2.1 5.75 5.75v7c0 3.65-2.1 5.75-5.75 5.75m-10-17c-2.86 0-4.25 1.39-4.25 4.25v7c0 2.86 1.39 4.25 4.25 4.25h10c2.86 0 4.25-1.39 4.25-4.25v-7c0-2.86-1.39-4.25-4.25-4.25z"
25
25
  },
26
26
  {
27
- d: "M12 15.75c-2.07 0-3.75-1.68-3.75-3.75S9.93 8.25 12 8.25s3.75 1.68 3.75 3.75-1.68 3.75-3.75 3.75m0-6c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25 2.25-1.01 2.25-2.25S13.24 9.75 12 9.75m7-2h-3c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h3c.41 0 .75.34.75.75s-.34.75-.75.75m-11 10H5c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h3c.41 0 .75.34.75.75s-.34.75-.75.75"
27
+ d: "M2 9h20v1.5H2zm6 8.75H5c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h3c.41 0 .75.34.75.75s-.34.75-.75.75"
28
28
  }
29
29
  ],
30
30
  filled: [
31
31
  {
32
- d: "M17 3.5H7c-3 0-5 1.5-5 5v7c0 3.5 2 5 5 5h10c3 0 5-1.5 5-5v-7c0-3.5-2-5-5-5M8 17.75H5c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h3c.41 0 .75.34.75.75s-.34.75-.75.75M12 15c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3m7-7.25h-3c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h3c.41 0 .75.34.75.75s-.34.75-.75.75"
32
+ d: "M22 15.5c0 3.5-2 5-5 5H7c-3 0-5-1.5-5-5v-5h20zm-17 .75c-.41 0-.75.34-.75.75s.34.75.75.75h3c.41 0 .75-.34.75-.75s-.34-.75-.75-.75zM17 3.5c3 0 5 1.5 5 5V9H2v-.5c0-3.5 2-5 5-5z"
33
33
  }
34
34
  ]
35
35
  },
@@ -39,12 +39,13 @@ const VARIANTS = {
39
39
  d: "M22.667 28.333H9.333c-4.866 0-7.666-2.8-7.666-7.666v-9.334c0-4.866 2.8-7.666 7.666-7.666h13.334c4.866 0 7.666 2.8 7.666 7.666v9.334c0 4.866-2.8 7.666-7.666 7.666M9.333 5.667c-3.813 0-5.666 1.853-5.666 5.666v9.334c0 3.813 1.853 5.666 5.666 5.666h13.334c3.813 0 5.666-1.853 5.666-5.666v-9.334c0-3.813-1.853-5.666-5.666-5.666z"
40
40
  },
41
41
  {
42
- d: "M16 21c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5m0-8c-1.653 0-3 1.347-3 3s1.347 3 3 3 3-1.347 3-3-1.347-3-3-3m9.333-2.667h-4c-.546 0-1-.453-1-1s.454-1 1-1h4c.547 0 1 .454 1 1 0 .547-.453 1-1 1M10.667 23.667h-4c-.547 0-1-.454-1-1 0-.547.453-1 1-1h4c.546 0 1 .453 1 1s-.454 1-1 1"
43
- }
42
+ d: "M10.667 23.667h-4c-.547 0-1-.454-1-1 0-.547.453-1 1-1h4c.546 0 1 .453 1 1s-.454 1-1 1"
43
+ },
44
+ { d: "M3 12h26v2H3z" }
44
45
  ],
45
46
  filled: [
46
47
  {
47
- d: "M22.667 4.667H9.333c-4 0-6.666 2-6.666 6.666v9.334c0 4.666 2.666 6.666 6.666 6.666h13.334c4 0 6.666-2 6.666-6.666v-9.334c0-4.666-2.666-6.666-6.666-6.666m-12 19h-4c-.547 0-1-.454-1-1 0-.547.453-1 1-1h4c.546 0 1 .453 1 1s-.454 1-1 1M16 20c-2.213 0-4-1.787-4-4s1.787-4 4-4 4 1.787 4 4-1.787 4-4 4m9.333-9.667h-4c-.546 0-1-.453-1-1s.454-1 1-1h4c.547 0 1 .454 1 1 0 .547-.453 1-1 1"
48
+ d: "M29.333 20.667c0 4.666-2.666 6.667-6.666 6.667H9.333c-4 0-6.666-2-6.666-6.667V14h26.666zm-22.666 1c-.547 0-1 .453-1 1s.453 1 1 1h4c.547 0 1-.454 1-1 0-.547-.453-1-1-1zm16-17c4 0 6.666 2 6.666 6.667V12H2.667v-.666c0-4.667 2.666-6.667 6.666-6.667z"
48
49
  }
49
50
  ]
50
51
  }
@@ -1 +1 @@
1
- {"version":3,"file":"CardIcon.mjs","sources":["../../../src/components/Icons/CardIcon.tsx"],"sourcesContent":["import * as React from \"react\";\nimport { BaseIcon } from \"./BaseIcon\";\nimport type { BaseIconProps, IconVariants } from \"./types\";\n\nconst VARIANTS: IconVariants = {\n 16: {\n outlined: [\n {\n d: \"M11.333 14.167H4.667c-2.434 0-3.834-1.4-3.834-3.834V5.667c0-2.434 1.4-3.834 3.834-3.834h6.666c2.434 0 3.834 1.4 3.834 3.834v4.666c0 2.434-1.4 3.834-3.834 3.834M4.667 2.833c-1.907 0-2.834.927-2.834 2.834v4.666c0 1.907.927 2.834 2.834 2.834h6.666c1.907 0 2.834-.927 2.834-2.834V5.667c0-1.907-.927-2.834-2.834-2.834z\",\n },\n {\n d: \"M8 10.5a2.5 2.5 0 0 1 0-5 2.5 2.5 0 0 1 0 5m0-4c-.827 0-1.5.673-1.5 1.5S7.173 9.5 8 9.5 9.5 8.827 9.5 8 8.827 6.5 8 6.5m4.667-1.333h-2a.504.504 0 0 1-.5-.5c0-.274.226-.5.5-.5h2c.273 0 .5.226.5.5 0 .273-.227.5-.5.5m-7.334 6.666h-2a.504.504 0 0 1-.5-.5c0-.273.227-.5.5-.5h2c.274 0 .5.227.5.5 0 .274-.226.5-.5.5\",\n },\n ],\n filled: [\n {\n d: \"M11.333 2.333H4.667c-2 0-3.334 1-3.334 3.334v4.666c0 2.334 1.334 3.334 3.334 3.334h6.666c2 0 3.334-1 3.334-3.334V5.667c0-2.334-1.334-3.334-3.334-3.334m-6 9.5h-2a.504.504 0 0 1-.5-.5c0-.273.227-.5.5-.5h2c.274 0 .5.227.5.5 0 .274-.226.5-.5.5M8 10c-1.107 0-2-.893-2-2s.893-2 2-2 2 .893 2 2-.893 2-2 2m4.667-4.833h-2a.504.504 0 0 1-.5-.5c0-.274.226-.5.5-.5h2c.273 0 .5.226.5.5 0 .273-.227.5-.5.5\",\n },\n ],\n },\n 24: {\n outlined: [\n {\n d: \"M17 21.25H7c-3.65 0-5.75-2.1-5.75-5.75v-7c0-3.65 2.1-5.75 5.75-5.75h10c3.65 0 5.75 2.1 5.75 5.75v7c0 3.65-2.1 5.75-5.75 5.75m-10-17c-2.86 0-4.25 1.39-4.25 4.25v7c0 2.86 1.39 4.25 4.25 4.25h10c2.86 0 4.25-1.39 4.25-4.25v-7c0-2.86-1.39-4.25-4.25-4.25z\",\n },\n {\n d: \"M12 15.75c-2.07 0-3.75-1.68-3.75-3.75S9.93 8.25 12 8.25s3.75 1.68 3.75 3.75-1.68 3.75-3.75 3.75m0-6c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25 2.25-1.01 2.25-2.25S13.24 9.75 12 9.75m7-2h-3c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h3c.41 0 .75.34.75.75s-.34.75-.75.75m-11 10H5c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h3c.41 0 .75.34.75.75s-.34.75-.75.75\",\n },\n ],\n filled: [\n {\n d: \"M17 3.5H7c-3 0-5 1.5-5 5v7c0 3.5 2 5 5 5h10c3 0 5-1.5 5-5v-7c0-3.5-2-5-5-5M8 17.75H5c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h3c.41 0 .75.34.75.75s-.34.75-.75.75M12 15c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3m7-7.25h-3c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h3c.41 0 .75.34.75.75s-.34.75-.75.75\",\n },\n ],\n },\n 32: {\n outlined: [\n {\n d: \"M22.667 28.333H9.333c-4.866 0-7.666-2.8-7.666-7.666v-9.334c0-4.866 2.8-7.666 7.666-7.666h13.334c4.866 0 7.666 2.8 7.666 7.666v9.334c0 4.866-2.8 7.666-7.666 7.666M9.333 5.667c-3.813 0-5.666 1.853-5.666 5.666v9.334c0 3.813 1.853 5.666 5.666 5.666h13.334c3.813 0 5.666-1.853 5.666-5.666v-9.334c0-3.813-1.853-5.666-5.666-5.666z\",\n },\n {\n d: \"M16 21c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5m0-8c-1.653 0-3 1.347-3 3s1.347 3 3 3 3-1.347 3-3-1.347-3-3-3m9.333-2.667h-4c-.546 0-1-.453-1-1s.454-1 1-1h4c.547 0 1 .454 1 1 0 .547-.453 1-1 1M10.667 23.667h-4c-.547 0-1-.454-1-1 0-.547.453-1 1-1h4c.546 0 1 .453 1 1s-.454 1-1 1\",\n },\n ],\n filled: [\n {\n d: \"M22.667 4.667H9.333c-4 0-6.666 2-6.666 6.666v9.334c0 4.666 2.666 6.666 6.666 6.666h13.334c4 0 6.666-2 6.666-6.666v-9.334c0-4.666-2.666-6.666-6.666-6.666m-12 19h-4c-.547 0-1-.454-1-1 0-.547.453-1 1-1h4c.546 0 1 .453 1 1s-.454 1-1 1M16 20c-2.213 0-4-1.787-4-4s1.787-4 4-4 4 1.787 4 4-1.787 4-4 4m9.333-9.667h-4c-.546 0-1-.453-1-1s.454-1 1-1h4c.547 0 1 .454 1 1 0 .547-.453 1-1 1\",\n },\n ],\n },\n};\n\n/** Props for {@link CardIcon}. See {@link BaseIconProps} for the shared shape. */\nexport type CardIconProps = BaseIconProps;\n\n/**\n * Card icon. Renders at sizes 16, 24, or 32 px with outlined and filled variants.\n *\n * @example\n * ```tsx\n * <CardIcon size={24} filled />\n * ```\n */\nexport const CardIcon = React.forwardRef<SVGSVGElement, CardIconProps>((props, ref) => (\n <BaseIcon ref={ref} variants={VARIANTS} {...props} />\n));\n\nCardIcon.displayName = \"CardIcon\";\n"],"names":[],"mappings":";;;;AAIA,MAAM,WAAyB;AAAA,EAC7B,IAAI;AAAA,IACF,UAAU;AAAA,MACR;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,IAEF,QAAQ;AAAA,MACN;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,EACF;AAAA,EAEF,IAAI;AAAA,IACF,UAAU;AAAA,MACR;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,IAEF,QAAQ;AAAA,MACN;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,EACF;AAAA,EAEF,IAAI;AAAA,IACF,UAAU;AAAA,MACR;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,IAEF,QAAQ;AAAA,MACN;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,EACF;AAEJ;AAaO,MAAM,WAAW,MAAM,WAAyC,CAAC,OAAO,QAC7E,oBAAC,UAAA,EAAS,KAAU,UAAU,UAAW,GAAG,OAAO,CACpD;AAED,SAAS,cAAc;"}
1
+ {"version":3,"file":"CardIcon.mjs","sources":["../../../src/components/Icons/CardIcon.tsx"],"sourcesContent":["import * as React from \"react\";\nimport { BaseIcon } from \"./BaseIcon\";\nimport type { BaseIconProps, IconVariants } from \"./types\";\n\nconst VARIANTS: IconVariants = {\n 16: {\n outlined: [\n {\n d: \"M11.333 14.167H4.667c-2.434 0-3.834-1.4-3.834-3.834V5.667c0-2.434 1.4-3.834 3.834-3.834h6.666c2.434 0 3.834 1.4 3.834 3.834v4.666c0 2.434-1.4 3.834-3.834 3.834M4.667 2.833c-1.907 0-2.834.927-2.834 2.834v4.666c0 1.907.927 2.834 2.834 2.834h6.666c1.907 0 2.834-.927 2.834-2.834V5.667c0-1.907-.927-2.834-2.834-2.834z\",\n },\n {\n d: \"M1 6h14v1H1zm4.333 5.833h-2a.504.504 0 0 1-.5-.5c0-.273.227-.5.5-.5h2c.274 0 .5.227.5.5 0 .274-.226.5-.5.5\",\n },\n ],\n filled: [\n {\n d: \"M14.667 10.333c0 2.334-1.334 3.333-3.334 3.333H4.667c-2 0-3.334-1-3.334-3.333V7h13.334zm-11.334.5c-.273 0-.5.227-.5.5 0 .274.227.5.5.5h2c.273 0 .5-.226.5-.5 0-.273-.227-.5-.5-.5zm8-8.5c2 0 3.334 1 3.334 3.333V6H1.333v-.334c0-2.333 1.334-3.333 3.334-3.333z\",\n },\n ],\n },\n 24: {\n outlined: [\n {\n d: \"M17 21.25H7c-3.65 0-5.75-2.1-5.75-5.75v-7c0-3.65 2.1-5.75 5.75-5.75h10c3.65 0 5.75 2.1 5.75 5.75v7c0 3.65-2.1 5.75-5.75 5.75m-10-17c-2.86 0-4.25 1.39-4.25 4.25v7c0 2.86 1.39 4.25 4.25 4.25h10c2.86 0 4.25-1.39 4.25-4.25v-7c0-2.86-1.39-4.25-4.25-4.25z\",\n },\n {\n d: \"M2 9h20v1.5H2zm6 8.75H5c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h3c.41 0 .75.34.75.75s-.34.75-.75.75\",\n },\n ],\n filled: [\n {\n d: \"M22 15.5c0 3.5-2 5-5 5H7c-3 0-5-1.5-5-5v-5h20zm-17 .75c-.41 0-.75.34-.75.75s.34.75.75.75h3c.41 0 .75-.34.75-.75s-.34-.75-.75-.75zM17 3.5c3 0 5 1.5 5 5V9H2v-.5c0-3.5 2-5 5-5z\",\n },\n ],\n },\n 32: {\n outlined: [\n {\n d: \"M22.667 28.333H9.333c-4.866 0-7.666-2.8-7.666-7.666v-9.334c0-4.866 2.8-7.666 7.666-7.666h13.334c4.866 0 7.666 2.8 7.666 7.666v9.334c0 4.866-2.8 7.666-7.666 7.666M9.333 5.667c-3.813 0-5.666 1.853-5.666 5.666v9.334c0 3.813 1.853 5.666 5.666 5.666h13.334c3.813 0 5.666-1.853 5.666-5.666v-9.334c0-3.813-1.853-5.666-5.666-5.666z\",\n },\n {\n d: \"M10.667 23.667h-4c-.547 0-1-.454-1-1 0-.547.453-1 1-1h4c.546 0 1 .453 1 1s-.454 1-1 1\",\n },\n { d: \"M3 12h26v2H3z\" },\n ],\n filled: [\n {\n d: \"M29.333 20.667c0 4.666-2.666 6.667-6.666 6.667H9.333c-4 0-6.666-2-6.666-6.667V14h26.666zm-22.666 1c-.547 0-1 .453-1 1s.453 1 1 1h4c.547 0 1-.454 1-1 0-.547-.453-1-1-1zm16-17c4 0 6.666 2 6.666 6.667V12H2.667v-.666c0-4.667 2.666-6.667 6.666-6.667z\",\n },\n ],\n },\n};\n\n/** Props for {@link CardIcon}. See {@link BaseIconProps} for the shared shape. */\nexport type CardIconProps = BaseIconProps;\n\n/**\n * Card icon. Renders at sizes 16, 24, or 32 px with outlined and filled variants.\n *\n * @example\n * ```tsx\n * <CardIcon size={24} filled />\n * ```\n */\nexport const CardIcon = React.forwardRef<SVGSVGElement, CardIconProps>((props, ref) => (\n <BaseIcon ref={ref} variants={VARIANTS} {...props} />\n));\n\nCardIcon.displayName = \"CardIcon\";\n"],"names":[],"mappings":";;;;AAIA,MAAM,WAAyB;AAAA,EAC7B,IAAI;AAAA,IACF,UAAU;AAAA,MACR;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,IAEF,QAAQ;AAAA,MACN;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,EACF;AAAA,EAEF,IAAI;AAAA,IACF,UAAU;AAAA,MACR;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,IAEF,QAAQ;AAAA,MACN;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,EACF;AAAA,EAEF,IAAI;AAAA,IACF,UAAU;AAAA,MACR;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL,EAAE,GAAG,gBAAA;AAAA,IAAgB;AAAA,IAEvB,QAAQ;AAAA,MACN;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,EACF;AAEJ;AAaO,MAAM,WAAW,MAAM,WAAyC,CAAC,OAAO,QAC7E,oBAAC,UAAA,EAAS,KAAU,UAAU,UAAW,GAAG,OAAO,CACpD;AAED,SAAS,cAAc;"}
@@ -0,0 +1,84 @@
1
+ "use client";
2
+ import { jsx } from "react/jsx-runtime";
3
+ import * as React from "react";
4
+ import { BaseIcon } from "./BaseIcon.mjs";
5
+ const VARIANTS = {
6
+ 16: {
7
+ outlined: [
8
+ {
9
+ d: "M3.755 12.24a.415.415 0 0 1 .01-.581l2.412-2.412a.415.415 0 0 1 .581-.01.415.415 0 0 1-.01.582L4.337 12.23a.415.415 0 0 1-.582.01"
10
+ },
11
+ {
12
+ d: "M7.965 11.627 4.368 8.031a1.43 1.43 0 0 1-.4-1.214c.065-.455.324-.86.716-1.099l.298-.183c.894-.551 2.02-.435 2.74.285l2.458 2.457c.72.72.835 1.847.28 2.744l-.183.298a1.52 1.52 0 0 1-1.098.717 1.42 1.42 0 0 1-1.214-.401zM7.13 6.404c-.457-.457-1.169-.53-1.734-.179L5.1 6.41a.69.69 0 0 0-.32.486.63.63 0 0 0 .177.54l3.6 3.6a.64.64 0 0 0 .54.177.67.67 0 0 0 .487-.319l.183-.298a1.435 1.435 0 0 0-.182-1.737L7.126 6.4z"
13
+ },
14
+ {
15
+ d: "M7.195 6.469s-.03-.03-.042-.05a.42.42 0 0 1 .103-.575L9.24 4.409a.21.21 0 0 0 .084-.192l-.105-.839a1.07 1.07 0 0 1 .573-1.069 1 1 0 0 1 1.176.174l2.541 2.54c.305.306.374.777.173 1.176a1.06 1.06 0 0 1-1.068.574l-.84-.106a.2.2 0 0 0-.191.085l-1.435 1.983a.413.413 0 0 1-.576.103c-.18-.124-.218-.383-.083-.572l1.435-1.983c.23-.314.606-.484.985-.436l.84.105a.2.2 0 0 0 .203-.112.2.2 0 0 0-.031-.228L10.38 3.07a.19.19 0 0 0-.228-.031.2.2 0 0 0-.113.203l.106.84c.047.379-.122.754-.436.985L7.726 6.502a.41.41 0 0 1-.531-.033"
16
+ }
17
+ ],
18
+ filled: [
19
+ {
20
+ d: "M3.755 12.24a.415.415 0 0 1 .01-.581l2.412-2.412a.415.415 0 0 1 .581-.01.415.415 0 0 1-.01.582L4.337 12.23a.415.415 0 0 1-.582.01"
21
+ },
22
+ {
23
+ d: "M7.965 11.627 4.368 8.031a1.43 1.43 0 0 1-.4-1.214c.065-.455.324-.86.716-1.099l.298-.183c.894-.551 2.02-.435 2.74.285l2.458 2.457c.72.72.835 1.847.28 2.744l-.183.298a1.52 1.52 0 0 1-1.098.717 1.42 1.42 0 0 1-1.214-.401z"
24
+ },
25
+ {
26
+ d: "M7.195 6.469s-.03-.03-.042-.05a.42.42 0 0 1 .103-.575L9.24 4.409a.21.21 0 0 0 .084-.192l-.105-.839a1.07 1.07 0 0 1 .573-1.069 1 1 0 0 1 1.176.174l2.541 2.54c.305.306.374.777.173 1.176a1.06 1.06 0 0 1-1.068.574l-.84-.106a.2.2 0 0 0-.191.085l-1.435 1.983a.413.413 0 0 1-.576.103c-.18-.124-2.512-2.18-2.377-2.37l2.514-1.801c.23-.315.057-2.138.436-2.09l2.522 2.09c.08.01.245 1.251.285 1.173s.105.217.048.16l-2.62-2.93a.19.19 0 0 0-.228-.03.2.2 0 0 0-.113.203l.106.84c.047.379-.122.754-.436.985L7.726 6.502a.41.41 0 0 1-.531-.033"
27
+ }
28
+ ]
29
+ },
30
+ 24: {
31
+ outlined: [
32
+ {
33
+ d: "M5.633 18.36a.62.62 0 0 1 .015-.872l3.617-3.617a.62.62 0 0 1 .873-.016.62.62 0 0 1-.016.873l-3.617 3.617a.62.62 0 0 1-.872.016"
34
+ },
35
+ {
36
+ d: "m11.947 17.44-5.395-5.394a2.15 2.15 0 0 1-.601-1.821 2.31 2.31 0 0 1 1.076-1.647l.446-.276c1.34-.826 3.03-.652 4.11.428l3.686 3.686c1.08 1.08 1.254 2.77.422 4.116l-.275.447a2.27 2.27 0 0 1-1.648 1.075 2.14 2.14 0 0 1-1.821-.601zm-1.252-7.834c-.685-.686-1.753-.795-2.6-.268l-.447.275a1.03 1.03 0 0 0-.478.73.94.94 0 0 0 .265.81l5.4 5.4a.95.95 0 0 0 .81.265c.303-.04.568-.214.73-.478l.275-.447c.526-.847.377-1.908-.274-2.607L10.69 9.6z"
37
+ },
38
+ {
39
+ d: "M10.793 9.703s-.046-.046-.063-.074a.63.63 0 0 1 .155-.864l2.974-2.152a.31.31 0 0 0 .128-.287l-.159-1.259a1.6 1.6 0 0 1 .86-1.603 1.5 1.5 0 0 1 1.764.26l3.812 3.812c.457.457.56 1.164.26 1.763a1.59 1.59 0 0 1-1.604.86L17.661 10a.3.3 0 0 0-.287.127l-2.152 2.975a.62.62 0 0 1-.863.155c-.27-.188-.327-.576-.125-.859l2.152-2.975a1.59 1.59 0 0 1 1.477-.654l1.26.158a.305.305 0 0 0 .305-.168.295.295 0 0 0-.047-.342L15.57 4.606a.29.29 0 0 0-.343-.046.305.305 0 0 0-.168.305l.158 1.26a1.59 1.59 0 0 1-.654 1.476l-2.975 2.152a.61.61 0 0 1-.795-.05"
40
+ }
41
+ ],
42
+ filled: [
43
+ {
44
+ d: "M5.633 18.36a.62.62 0 0 1 .015-.872l3.617-3.617a.62.62 0 0 1 .873-.016.62.62 0 0 1-.016.873l-3.617 3.617a.62.62 0 0 1-.872.016"
45
+ },
46
+ {
47
+ d: "m11.947 17.44-5.395-5.394a2.15 2.15 0 0 1-.601-1.821 2.31 2.31 0 0 1 1.076-1.647l.446-.276c1.34-.826 3.03-.652 4.11.428l3.686 3.686c1.08 1.08 1.254 2.77.422 4.116l-.275.447a2.27 2.27 0 0 1-1.648 1.075 2.14 2.14 0 0 1-1.821-.601z"
48
+ },
49
+ {
50
+ d: "M10.793 9.703s-.046-.046-.063-.074a.63.63 0 0 1 .155-.864l2.974-2.152a.31.31 0 0 0 .128-.287l-.159-1.259a1.6 1.6 0 0 1 .86-1.603 1.5 1.5 0 0 1 1.764.26l3.812 3.812c.457.457.56 1.164.26 1.763a1.59 1.59 0 0 1-1.604.86L17.661 10a.3.3 0 0 0-.287.127l-2.152 2.975a.62.62 0 0 1-.863.155c-.27-.188-3.77-3.272-3.566-3.555L14.563 7c.346-.471.086-3.207.654-3.136L19 7c.122.015.368 1.877.428 1.76s.158.326.072.24l-3.93-4.394a.29.29 0 0 0-.343-.046.305.305 0 0 0-.168.305l.158 1.26a1.59 1.59 0 0 1-.654 1.476l-2.975 2.152a.61.61 0 0 1-.795-.05"
51
+ }
52
+ ]
53
+ },
54
+ 32: {
55
+ outlined: [
56
+ {
57
+ d: "M7.51 24.48c-.312-.312-.303-.84.02-1.163l4.823-4.823c.324-.323.851-.332 1.164-.02s.303.84-.02 1.163L8.673 24.46c-.324.324-.851.333-1.164.02"
58
+ },
59
+ {
60
+ d: "M15.93 23.255 8.737 16.06a2.87 2.87 0 0 1-.803-2.428 3.09 3.09 0 0 1 1.435-2.196l.596-.368c1.787-1.101 4.04-.87 5.48.57l4.914 4.915c1.44 1.44 1.672 3.693.563 5.488l-.368.596a3.03 3.03 0 0 1-2.196 1.434 2.85 2.85 0 0 1-2.428-.802zm-1.67-10.447c-.914-.914-2.338-1.06-3.467-.357l-.596.367a1.38 1.38 0 0 0-.637.973c-.061.396.071.797.353 1.079l7.2 7.2c.283.282.676.407 1.08.354.404-.054.757-.285.973-.638l.367-.596c.702-1.129.502-2.544-.365-3.475l-4.915-4.914z"
61
+ },
62
+ {
63
+ d: "M14.39 12.938s-.06-.061-.084-.1c-.257-.367-.162-.873.207-1.151l3.966-2.87a.42.42 0 0 0 .17-.382l-.21-1.68c-.11-.866.355-1.727 1.146-2.136a2 2 0 0 1 2.35.346l5.083 5.082c.61.61.748 1.554.346 2.352a2.12 2.12 0 0 1-2.137 1.146l-1.679-.21a.41.41 0 0 0-.383.169l-2.869 3.966c-.27.377-.791.472-1.151.207-.36-.25-.436-.768-.166-1.145l2.87-3.966a2.12 2.12 0 0 1 1.969-.873l1.679.211a.41.41 0 0 0 .407-.224.39.39 0 0 0-.062-.457L20.76 6.142a.38.38 0 0 0-.457-.062.41.41 0 0 0-.224.408l.21 1.679a2.12 2.12 0 0 1-.871 1.969l-3.967 2.87a.82.82 0 0 1-1.061-.068"
64
+ }
65
+ ],
66
+ filled: [
67
+ {
68
+ d: "M7.51 24.48c-.312-.312-.303-.84.02-1.163l4.823-4.823c.324-.323.851-.332 1.164-.02s.303.84-.02 1.163L8.673 24.46c-.324.324-.851.333-1.164.02"
69
+ },
70
+ {
71
+ d: "M15.93 23.255 8.737 16.06a2.87 2.87 0 0 1-.803-2.428 3.09 3.09 0 0 1 1.435-2.196l.596-.368c1.787-1.101 4.04-.87 5.48.57l4.914 4.915c1.44 1.44 1.672 3.693.563 5.488l-.368.596a3.03 3.03 0 0 1-2.196 1.434 2.85 2.85 0 0 1-2.428-.802z"
72
+ },
73
+ {
74
+ d: "M14.39 12.938s-.06-.061-.084-.1c-.257-.367-.162-.873.207-1.151l3.966-2.87a.42.42 0 0 0 .17-.382l-.21-1.68c-.11-.866.355-1.727 1.146-2.136a2 2 0 0 1 2.35.346l5.083 5.082c.61.61.748 1.554.346 2.352a2.12 2.12 0 0 1-2.137 1.146l-1.679-.21a.41.41 0 0 0-.383.169l-2.869 3.966c-.27.377-.791.472-1.151.207-.36-.25-5.025-4.362-4.755-4.74l5.028-3.604c.46-.628.114-4.276.872-4.18l5.043 4.18c.163.02.49 2.503.57 2.347.081-.157.211.434.097.32l-5.24-5.859a.38.38 0 0 0-.457-.062.41.41 0 0 0-.224.408l.21 1.679a2.12 2.12 0 0 1-.871 1.969l-3.967 2.87a.82.82 0 0 1-1.061-.068"
75
+ }
76
+ ]
77
+ }
78
+ };
79
+ const Pin2Icon = React.forwardRef((props, ref) => /* @__PURE__ */ jsx(BaseIcon, { ref, variants: VARIANTS, ...props }));
80
+ Pin2Icon.displayName = "Pin2Icon";
81
+ export {
82
+ Pin2Icon
83
+ };
84
+ //# sourceMappingURL=Pin2Icon.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Pin2Icon.mjs","sources":["../../../src/components/Icons/Pin2Icon.tsx"],"sourcesContent":["import * as React from \"react\";\nimport { BaseIcon } from \"./BaseIcon\";\nimport type { BaseIconProps, IconVariants } from \"./types\";\n\nconst VARIANTS: IconVariants = {\n 16: {\n outlined: [\n {\n d: \"M3.755 12.24a.415.415 0 0 1 .01-.581l2.412-2.412a.415.415 0 0 1 .581-.01.415.415 0 0 1-.01.582L4.337 12.23a.415.415 0 0 1-.582.01\",\n },\n {\n d: \"M7.965 11.627 4.368 8.031a1.43 1.43 0 0 1-.4-1.214c.065-.455.324-.86.716-1.099l.298-.183c.894-.551 2.02-.435 2.74.285l2.458 2.457c.72.72.835 1.847.28 2.744l-.183.298a1.52 1.52 0 0 1-1.098.717 1.42 1.42 0 0 1-1.214-.401zM7.13 6.404c-.457-.457-1.169-.53-1.734-.179L5.1 6.41a.69.69 0 0 0-.32.486.63.63 0 0 0 .177.54l3.6 3.6a.64.64 0 0 0 .54.177.67.67 0 0 0 .487-.319l.183-.298a1.435 1.435 0 0 0-.182-1.737L7.126 6.4z\",\n },\n {\n d: \"M7.195 6.469s-.03-.03-.042-.05a.42.42 0 0 1 .103-.575L9.24 4.409a.21.21 0 0 0 .084-.192l-.105-.839a1.07 1.07 0 0 1 .573-1.069 1 1 0 0 1 1.176.174l2.541 2.54c.305.306.374.777.173 1.176a1.06 1.06 0 0 1-1.068.574l-.84-.106a.2.2 0 0 0-.191.085l-1.435 1.983a.413.413 0 0 1-.576.103c-.18-.124-.218-.383-.083-.572l1.435-1.983c.23-.314.606-.484.985-.436l.84.105a.2.2 0 0 0 .203-.112.2.2 0 0 0-.031-.228L10.38 3.07a.19.19 0 0 0-.228-.031.2.2 0 0 0-.113.203l.106.84c.047.379-.122.754-.436.985L7.726 6.502a.41.41 0 0 1-.531-.033\",\n },\n ],\n filled: [\n {\n d: \"M3.755 12.24a.415.415 0 0 1 .01-.581l2.412-2.412a.415.415 0 0 1 .581-.01.415.415 0 0 1-.01.582L4.337 12.23a.415.415 0 0 1-.582.01\",\n },\n {\n d: \"M7.965 11.627 4.368 8.031a1.43 1.43 0 0 1-.4-1.214c.065-.455.324-.86.716-1.099l.298-.183c.894-.551 2.02-.435 2.74.285l2.458 2.457c.72.72.835 1.847.28 2.744l-.183.298a1.52 1.52 0 0 1-1.098.717 1.42 1.42 0 0 1-1.214-.401z\",\n },\n {\n d: \"M7.195 6.469s-.03-.03-.042-.05a.42.42 0 0 1 .103-.575L9.24 4.409a.21.21 0 0 0 .084-.192l-.105-.839a1.07 1.07 0 0 1 .573-1.069 1 1 0 0 1 1.176.174l2.541 2.54c.305.306.374.777.173 1.176a1.06 1.06 0 0 1-1.068.574l-.84-.106a.2.2 0 0 0-.191.085l-1.435 1.983a.413.413 0 0 1-.576.103c-.18-.124-2.512-2.18-2.377-2.37l2.514-1.801c.23-.315.057-2.138.436-2.09l2.522 2.09c.08.01.245 1.251.285 1.173s.105.217.048.16l-2.62-2.93a.19.19 0 0 0-.228-.03.2.2 0 0 0-.113.203l.106.84c.047.379-.122.754-.436.985L7.726 6.502a.41.41 0 0 1-.531-.033\",\n },\n ],\n },\n 24: {\n outlined: [\n {\n d: \"M5.633 18.36a.62.62 0 0 1 .015-.872l3.617-3.617a.62.62 0 0 1 .873-.016.62.62 0 0 1-.016.873l-3.617 3.617a.62.62 0 0 1-.872.016\",\n },\n {\n d: \"m11.947 17.44-5.395-5.394a2.15 2.15 0 0 1-.601-1.821 2.31 2.31 0 0 1 1.076-1.647l.446-.276c1.34-.826 3.03-.652 4.11.428l3.686 3.686c1.08 1.08 1.254 2.77.422 4.116l-.275.447a2.27 2.27 0 0 1-1.648 1.075 2.14 2.14 0 0 1-1.821-.601zm-1.252-7.834c-.685-.686-1.753-.795-2.6-.268l-.447.275a1.03 1.03 0 0 0-.478.73.94.94 0 0 0 .265.81l5.4 5.4a.95.95 0 0 0 .81.265c.303-.04.568-.214.73-.478l.275-.447c.526-.847.377-1.908-.274-2.607L10.69 9.6z\",\n },\n {\n d: \"M10.793 9.703s-.046-.046-.063-.074a.63.63 0 0 1 .155-.864l2.974-2.152a.31.31 0 0 0 .128-.287l-.159-1.259a1.6 1.6 0 0 1 .86-1.603 1.5 1.5 0 0 1 1.764.26l3.812 3.812c.457.457.56 1.164.26 1.763a1.59 1.59 0 0 1-1.604.86L17.661 10a.3.3 0 0 0-.287.127l-2.152 2.975a.62.62 0 0 1-.863.155c-.27-.188-.327-.576-.125-.859l2.152-2.975a1.59 1.59 0 0 1 1.477-.654l1.26.158a.305.305 0 0 0 .305-.168.295.295 0 0 0-.047-.342L15.57 4.606a.29.29 0 0 0-.343-.046.305.305 0 0 0-.168.305l.158 1.26a1.59 1.59 0 0 1-.654 1.476l-2.975 2.152a.61.61 0 0 1-.795-.05\",\n },\n ],\n filled: [\n {\n d: \"M5.633 18.36a.62.62 0 0 1 .015-.872l3.617-3.617a.62.62 0 0 1 .873-.016.62.62 0 0 1-.016.873l-3.617 3.617a.62.62 0 0 1-.872.016\",\n },\n {\n d: \"m11.947 17.44-5.395-5.394a2.15 2.15 0 0 1-.601-1.821 2.31 2.31 0 0 1 1.076-1.647l.446-.276c1.34-.826 3.03-.652 4.11.428l3.686 3.686c1.08 1.08 1.254 2.77.422 4.116l-.275.447a2.27 2.27 0 0 1-1.648 1.075 2.14 2.14 0 0 1-1.821-.601z\",\n },\n {\n d: \"M10.793 9.703s-.046-.046-.063-.074a.63.63 0 0 1 .155-.864l2.974-2.152a.31.31 0 0 0 .128-.287l-.159-1.259a1.6 1.6 0 0 1 .86-1.603 1.5 1.5 0 0 1 1.764.26l3.812 3.812c.457.457.56 1.164.26 1.763a1.59 1.59 0 0 1-1.604.86L17.661 10a.3.3 0 0 0-.287.127l-2.152 2.975a.62.62 0 0 1-.863.155c-.27-.188-3.77-3.272-3.566-3.555L14.563 7c.346-.471.086-3.207.654-3.136L19 7c.122.015.368 1.877.428 1.76s.158.326.072.24l-3.93-4.394a.29.29 0 0 0-.343-.046.305.305 0 0 0-.168.305l.158 1.26a1.59 1.59 0 0 1-.654 1.476l-2.975 2.152a.61.61 0 0 1-.795-.05\",\n },\n ],\n },\n 32: {\n outlined: [\n {\n d: \"M7.51 24.48c-.312-.312-.303-.84.02-1.163l4.823-4.823c.324-.323.851-.332 1.164-.02s.303.84-.02 1.163L8.673 24.46c-.324.324-.851.333-1.164.02\",\n },\n {\n d: \"M15.93 23.255 8.737 16.06a2.87 2.87 0 0 1-.803-2.428 3.09 3.09 0 0 1 1.435-2.196l.596-.368c1.787-1.101 4.04-.87 5.48.57l4.914 4.915c1.44 1.44 1.672 3.693.563 5.488l-.368.596a3.03 3.03 0 0 1-2.196 1.434 2.85 2.85 0 0 1-2.428-.802zm-1.67-10.447c-.914-.914-2.338-1.06-3.467-.357l-.596.367a1.38 1.38 0 0 0-.637.973c-.061.396.071.797.353 1.079l7.2 7.2c.283.282.676.407 1.08.354.404-.054.757-.285.973-.638l.367-.596c.702-1.129.502-2.544-.365-3.475l-4.915-4.914z\",\n },\n {\n d: \"M14.39 12.938s-.06-.061-.084-.1c-.257-.367-.162-.873.207-1.151l3.966-2.87a.42.42 0 0 0 .17-.382l-.21-1.68c-.11-.866.355-1.727 1.146-2.136a2 2 0 0 1 2.35.346l5.083 5.082c.61.61.748 1.554.346 2.352a2.12 2.12 0 0 1-2.137 1.146l-1.679-.21a.41.41 0 0 0-.383.169l-2.869 3.966c-.27.377-.791.472-1.151.207-.36-.25-.436-.768-.166-1.145l2.87-3.966a2.12 2.12 0 0 1 1.969-.873l1.679.211a.41.41 0 0 0 .407-.224.39.39 0 0 0-.062-.457L20.76 6.142a.38.38 0 0 0-.457-.062.41.41 0 0 0-.224.408l.21 1.679a2.12 2.12 0 0 1-.871 1.969l-3.967 2.87a.82.82 0 0 1-1.061-.068\",\n },\n ],\n filled: [\n {\n d: \"M7.51 24.48c-.312-.312-.303-.84.02-1.163l4.823-4.823c.324-.323.851-.332 1.164-.02s.303.84-.02 1.163L8.673 24.46c-.324.324-.851.333-1.164.02\",\n },\n {\n d: \"M15.93 23.255 8.737 16.06a2.87 2.87 0 0 1-.803-2.428 3.09 3.09 0 0 1 1.435-2.196l.596-.368c1.787-1.101 4.04-.87 5.48.57l4.914 4.915c1.44 1.44 1.672 3.693.563 5.488l-.368.596a3.03 3.03 0 0 1-2.196 1.434 2.85 2.85 0 0 1-2.428-.802z\",\n },\n {\n d: \"M14.39 12.938s-.06-.061-.084-.1c-.257-.367-.162-.873.207-1.151l3.966-2.87a.42.42 0 0 0 .17-.382l-.21-1.68c-.11-.866.355-1.727 1.146-2.136a2 2 0 0 1 2.35.346l5.083 5.082c.61.61.748 1.554.346 2.352a2.12 2.12 0 0 1-2.137 1.146l-1.679-.21a.41.41 0 0 0-.383.169l-2.869 3.966c-.27.377-.791.472-1.151.207-.36-.25-5.025-4.362-4.755-4.74l5.028-3.604c.46-.628.114-4.276.872-4.18l5.043 4.18c.163.02.49 2.503.57 2.347.081-.157.211.434.097.32l-5.24-5.859a.38.38 0 0 0-.457-.062.41.41 0 0 0-.224.408l.21 1.679a2.12 2.12 0 0 1-.871 1.969l-3.967 2.87a.82.82 0 0 1-1.061-.068\",\n },\n ],\n },\n};\n\n/** Props for {@link Pin2Icon}. See {@link BaseIconProps} for the shared shape. */\nexport type Pin2IconProps = BaseIconProps;\n\n/**\n * Pin 2 icon. Renders at sizes 16, 24, or 32 px with outlined and filled variants.\n *\n * @example\n * ```tsx\n * <Pin2Icon size={24} filled />\n * ```\n */\nexport const Pin2Icon = React.forwardRef<SVGSVGElement, Pin2IconProps>((props, ref) => (\n <BaseIcon ref={ref} variants={VARIANTS} {...props} />\n));\n\nPin2Icon.displayName = \"Pin2Icon\";\n"],"names":[],"mappings":";;;;AAIA,MAAM,WAAyB;AAAA,EAC7B,IAAI;AAAA,IACF,UAAU;AAAA,MACR;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,IAEF,QAAQ;AAAA,MACN;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,EACF;AAAA,EAEF,IAAI;AAAA,IACF,UAAU;AAAA,MACR;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,IAEF,QAAQ;AAAA,MACN;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,EACF;AAAA,EAEF,IAAI;AAAA,IACF,UAAU;AAAA,MACR;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,IAEF,QAAQ;AAAA,MACN;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,EACF;AAEJ;AAaO,MAAM,WAAW,MAAM,WAAyC,CAAC,OAAO,QAC7E,oBAAC,UAAA,EAAS,KAAU,UAAU,UAAW,GAAG,OAAO,CACpD;AAED,SAAS,cAAc;"}
@@ -6,7 +6,7 @@ const VARIANTS = {
6
6
  16: {
7
7
  outlined: [
8
8
  {
9
- d: "M12 13.86a.58.58 0 0 1-.567-.433l-.253-.894a1.24 1.24 0 0 0-.973-.88l-.914-.166a.59.59 0 0 1-.486-.554.59.59 0 0 1 .426-.6l.894-.253a1.24 1.24 0 0 0 .88-.973l.166-.914a.59.59 0 0 1 .554-.486c.273-.02.526.16.6.426l.253.894c.133.46.507.793.973.88l.914.166a.59.59 0 0 1 .486.554.584.584 0 0 1-.426.6l-.894.253a1.24 1.24 0 0 0-.88.973l-.166.914c-.047.273-.314.48-.587.493.013 0-.013 0 0 0m-1.107-3.027c.434.194.794.52 1.027.934a2.2 2.2 0 0 1 .933-1.027 2.2 2.2 0 0 1-1.026-.933c-.194.433-.52.793-.934 1.026"
9
+ d: "M12 13.86a.58.58 0 0 1-.567-.433l-.253-.894a1.24 1.24 0 0 0-.973-.88l-.914-.166a.59.59 0 0 1-.486-.554.59.59 0 0 1 .426-.6l.894-.253a1.24 1.24 0 0 0 .88-.973l.166-.914a.59.59 0 0 1 .554-.486c.273-.02.526.16.6.426l.253.894c.133.46.507.793.973.88l.914.166a.59.59 0 0 1 .486.554.585.585 0 0 1-.426.6l-.894.253a1.24 1.24 0 0 0-.88.973l-.166.914c-.047.273-.314.48-.587.493.013 0-.013 0 0 0m-1.107-3.027c.434.194.794.52 1.027.934a2.2 2.2 0 0 1 .933-1.027 2.2 2.2 0 0 1-1.026-.933c-.194.433-.52.793-.934 1.026"
10
10
  },
11
11
  {
12
12
  d: "M7.92 15.16a1.8 1.8 0 0 1-.38-.04c-3.5-.78-6.167-3.887-6.34-7.387l-.147-2.92c-.04-.746.467-1.58 1.147-1.893l3.633-1.7a3.98 3.98 0 0 1 2.98-.147L12.6 2.407c.707.246 1.287 1.026 1.327 1.773l.14 2.927a.5.5 0 0 1-.474.52.516.516 0 0 1-.52-.474l-.14-2.926c-.02-.34-.333-.76-.66-.88L8.487 2.013a2.96 2.96 0 0 0-2.227.114l-3.633 1.7c-.32.146-.587.593-.574.94l.147 2.92c.153 3.053 2.493 5.773 5.56 6.46a.9.9 0 0 0 .413-.02 7 7 0 0 0 1.3-.587c.24-.14.547-.06.68.18.14.24.06.547-.18.68-.473.273-.973.5-1.486.667-.18.06-.38.093-.567.093"
@@ -1 +1 @@
1
- {"version":3,"file":"PrivacyIcon.mjs","sources":["../../../src/components/Icons/PrivacyIcon.tsx"],"sourcesContent":["import * as React from \"react\";\nimport { BaseIcon } from \"./BaseIcon\";\nimport type { BaseIconProps, IconVariants } from \"./types\";\n\nconst VARIANTS: IconVariants = {\n 16: {\n outlined: [\n {\n d: \"M12 13.86a.58.58 0 0 1-.567-.433l-.253-.894a1.24 1.24 0 0 0-.973-.88l-.914-.166a.59.59 0 0 1-.486-.554.59.59 0 0 1 .426-.6l.894-.253a1.24 1.24 0 0 0 .88-.973l.166-.914a.59.59 0 0 1 .554-.486c.273-.02.526.16.6.426l.253.894c.133.46.507.793.973.88l.914.166a.59.59 0 0 1 .486.554.584.584 0 0 1-.426.6l-.894.253a1.24 1.24 0 0 0-.88.973l-.166.914c-.047.273-.314.48-.587.493.013 0-.013 0 0 0m-1.107-3.027c.434.194.794.52 1.027.934a2.2 2.2 0 0 1 .933-1.027 2.2 2.2 0 0 1-1.026-.933c-.194.433-.52.793-.934 1.026\",\n },\n {\n d: \"M7.92 15.16a1.8 1.8 0 0 1-.38-.04c-3.5-.78-6.167-3.887-6.34-7.387l-.147-2.92c-.04-.746.467-1.58 1.147-1.893l3.633-1.7a3.98 3.98 0 0 1 2.98-.147L12.6 2.407c.707.246 1.287 1.026 1.327 1.773l.14 2.927a.5.5 0 0 1-.474.52.516.516 0 0 1-.52-.474l-.14-2.926c-.02-.34-.333-.76-.66-.88L8.487 2.013a2.96 2.96 0 0 0-2.227.114l-3.633 1.7c-.32.146-.587.593-.574.94l.147 2.92c.153 3.053 2.493 5.773 5.56 6.46a.9.9 0 0 0 .413-.02 7 7 0 0 0 1.3-.587c.24-.14.547-.06.68.18.14.24.06.547-.18.68-.473.273-.973.5-1.486.667-.18.06-.38.093-.567.093\",\n },\n ],\n filled: [\n {\n d: \"M9.747 13.48a1.34 1.34 0 0 0-.94-.933l-.94-.254a1.29 1.29 0 0 1-.947-1.253c0-.593.38-1.1.967-1.267l.906-.24c.467-.133.814-.48.94-.94l.247-.9.053-.173c.2-.5.674-.82 1.214-.82.546 0 1.033.32 1.22.813l.033.094.26.973c.06.213.173.393.313.553.147-.56.22-1.14.22-1.72l.014-2.926c0-.547-.42-1.167-.934-1.374L8.66 1.593a3.46 3.46 0 0 0-2.607 0L2.34 3.113c-.507.207-.927.827-.927 1.374v2.926c0 3.26 2.367 6.314 5.6 7.207.22.06.46.06.68 0a7.4 7.4 0 0 0 2.1-.96z\",\n },\n {\n d: \"M14.587 11.053a.3.3 0 0 1-.214.274l-.94.26c-.806.22-1.42.833-1.64 1.64l-.253.913a.29.29 0 0 1-.293.227.29.29 0 0 1-.294-.227l-.253-.927a2.33 2.33 0 0 0-1.64-1.633l-.927-.253a.29.29 0 0 1-.22-.294c0-.073.02-.246.22-.3l.934-.246c.8-.227 1.413-.84 1.633-1.64l.267-.967a.29.29 0 0 1 .28-.187c.066 0 .22.02.28.174l.266.98c.22.8.84 1.413 1.64 1.64l.954.26c.193.073.2.253.2.306\",\n },\n ],\n },\n 24: {\n outlined: [\n {\n d: \"M18 20.79c-.4 0-.75-.26-.85-.65l-.38-1.34a1.86 1.86 0 0 0-1.46-1.32l-1.37-.25a.884.884 0 0 1-.73-.83c-.02-.41.24-.79.64-.9l1.34-.38c.69-.2 1.19-.76 1.32-1.46l.25-1.37c.07-.41.42-.71.83-.73.41-.03.79.24.9.64l.38 1.34c.2.69.76 1.19 1.46 1.32l1.37.25c.41.07.71.42.73.83.02.42-.24.79-.64.9l-1.34.38c-.69.2-1.19.76-1.32 1.46l-.25 1.37c-.07.41-.47.72-.88.74.02 0-.02 0 0 0m-1.66-4.54c.65.29 1.19.78 1.54 1.4.29-.65.78-1.19 1.4-1.54-.65-.29-1.19-.78-1.54-1.4-.29.65-.78 1.19-1.4 1.54\",\n },\n {\n d: \"M11.88 22.74c-.19 0-.39-.02-.57-.06-5.25-1.17-9.25-5.83-9.51-11.08l-.22-4.38c-.06-1.12.7-2.37 1.72-2.84l5.45-2.55c1.39-.65 3.02-.73 4.47-.22l5.68 2c1.06.37 1.93 1.54 1.99 2.66l.21 4.39c.02.41-.3.76-.71.78-.38.01-.76-.3-.78-.71l-.21-4.39c-.03-.51-.5-1.14-.99-1.32l-5.68-2c-1.08-.38-2.3-.32-3.34.17L3.94 5.74c-.48.22-.88.89-.86 1.41l.22 4.38c.23 4.58 3.74 8.66 8.34 9.69.2.04.42.03.62-.03.67-.22 1.33-.52 1.95-.88.36-.21.82-.09 1.02.27.21.36.09.82-.27 1.02-.71.41-1.46.75-2.23 1-.27.09-.57.14-.85.14\",\n },\n ],\n filled: [\n {\n d: \"M14.62 20.22c-.19-.68-.72-1.21-1.41-1.4l-1.41-.38a1.93 1.93 0 0 1-1.42-1.88c0-.89.57-1.65 1.45-1.9l1.36-.36c.7-.2 1.22-.72 1.41-1.41l.37-1.35.08-.26c.3-.75 1.01-1.23 1.82-1.23.82 0 1.55.48 1.83 1.22l.05.14.39 1.46c.09.32.26.59.47.83.22-.84.33-1.71.33-2.58l.02-4.39c0-.82-.63-1.75-1.4-2.06l-5.57-2.28a5.2 5.2 0 0 0-3.91 0L3.51 4.67c-.76.31-1.39 1.24-1.39 2.06v4.39c0 4.89 3.55 9.47 8.4 10.81.33.09.69.09 1.02 0 1.13-.31 2.19-.81 3.15-1.44z\",\n },\n {\n d: \"M21.88 16.58a.45.45 0 0 1-.32.41l-1.41.39a3.48 3.48 0 0 0-2.46 2.46l-.38 1.37c-.09.31-.33.34-.44.34s-.35-.03-.44-.34l-.38-1.39a3.5 3.5 0 0 0-2.46-2.45l-1.39-.38a.44.44 0 0 1-.33-.44c0-.11.03-.37.33-.45l1.4-.37c1.2-.34 2.12-1.26 2.45-2.46l.4-1.45c.1-.25.32-.28.42-.28s.33.03.42.26l.4 1.47c.33 1.2 1.26 2.12 2.46 2.46l1.43.39c.29.11.3.38.3.46\",\n },\n ],\n },\n 32: {\n outlined: [\n {\n d: \"M24 27.72c-.533 0-1-.347-1.133-.867l-.507-1.786a2.48 2.48 0 0 0-1.947-1.76l-1.826-.334a1.18 1.18 0 0 1-.974-1.106 1.18 1.18 0 0 1 .854-1.2l1.786-.507a2.48 2.48 0 0 0 1.76-1.947l.334-1.826a1.18 1.18 0 0 1 1.106-.974c.547-.04 1.054.32 1.2.854l.507 1.786a2.48 2.48 0 0 0 1.947 1.76l1.826.334c.547.093.947.56.974 1.106.026.56-.32 1.054-.854 1.2l-1.786.507a2.48 2.48 0 0 0-1.76 1.947l-.334 1.826c-.093.547-.626.96-1.173.987.027 0-.027 0 0 0m-2.213-6.053a4.43 4.43 0 0 1 2.053 1.866 4.43 4.43 0 0 1 1.867-2.053 4.43 4.43 0 0 1-2.054-1.867 4.43 4.43 0 0 1-1.866 2.054\",\n },\n {\n d: \"M15.84 30.32a3.6 3.6 0 0 1-.76-.08c-7-1.56-12.333-7.773-12.68-14.773l-.293-5.84c-.08-1.494.933-3.16 2.293-3.787l7.267-3.4a7.95 7.95 0 0 1 5.96-.293L25.2 4.813c1.413.494 2.573 2.054 2.653 3.547l.28 5.853a.997.997 0 0 1-.946 1.04c-.507.014-1.014-.4-1.04-.946l-.28-5.854c-.04-.68-.667-1.52-1.32-1.76l-7.574-2.666a5.93 5.93 0 0 0-4.453.226l-7.267 3.4c-.64.294-1.173 1.187-1.146 1.88l.293 5.84c.307 6.107 4.987 11.547 11.12 12.92.267.054.56.04.827-.04a13.8 13.8 0 0 0 2.6-1.173.984.984 0 0 1 1.36.36.984.984 0 0 1-.36 1.36 15.6 15.6 0 0 1-2.974 1.333c-.36.12-.76.187-1.133.187\",\n },\n ],\n filled: [\n {\n d: \"M19.493 26.96a2.68 2.68 0 0 0-1.88-1.867l-1.88-.506a2.57 2.57 0 0 1-1.893-2.507c0-1.187.76-2.2 1.933-2.533l1.814-.48a2.68 2.68 0 0 0 1.88-1.88l.493-1.8.107-.347c.4-1 1.346-1.64 2.426-1.64 1.094 0 2.067.64 2.44 1.627l.067.186.52 1.947c.12.427.347.787.627 1.107a13.6 13.6 0 0 0 .44-3.44l.026-5.854c0-1.093-.84-2.333-1.866-2.746l-7.427-3.04a6.92 6.92 0 0 0-5.213 0L4.68 6.227C3.667 6.64 2.827 7.88 2.827 8.973v5.854c0 6.52 4.733 12.626 11.2 14.413.44.12.92.12 1.36 0a14.8 14.8 0 0 0 4.2-1.92z\",\n },\n {\n d: \"M29.173 22.107a.6.6 0 0 1-.426.546l-1.88.52a4.63 4.63 0 0 0-3.28 3.28l-.507 1.827a.575.575 0 0 1-.587.453.575.575 0 0 1-.586-.453l-.507-1.853a4.66 4.66 0 0 0-3.28-3.267l-1.853-.507a.584.584 0 0 1-.44-.586c0-.147.04-.494.44-.6l1.866-.494a4.68 4.68 0 0 0 3.267-3.28l.533-1.933a.58.58 0 0 1 .56-.373c.134 0 .44.04.56.346l.534 1.96a4.7 4.7 0 0 0 3.28 3.28l1.906.52c.387.147.4.507.4.614\",\n },\n ],\n },\n};\n\n/** Props for {@link PrivacyIcon}. See {@link BaseIconProps} for the shared shape. */\nexport type PrivacyIconProps = BaseIconProps;\n\n/**\n * Privacy icon. Renders at sizes 16, 24, or 32 px with outlined and filled variants.\n *\n * @example\n * ```tsx\n * <PrivacyIcon size={24} filled />\n * ```\n */\nexport const PrivacyIcon = React.forwardRef<SVGSVGElement, PrivacyIconProps>((props, ref) => (\n <BaseIcon ref={ref} variants={VARIANTS} {...props} />\n));\n\nPrivacyIcon.displayName = \"PrivacyIcon\";\n"],"names":[],"mappings":";;;;AAIA,MAAM,WAAyB;AAAA,EAC7B,IAAI;AAAA,IACF,UAAU;AAAA,MACR;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,IAEF,QAAQ;AAAA,MACN;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,EACF;AAAA,EAEF,IAAI;AAAA,IACF,UAAU;AAAA,MACR;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,IAEF,QAAQ;AAAA,MACN;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,EACF;AAAA,EAEF,IAAI;AAAA,IACF,UAAU;AAAA,MACR;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,IAEF,QAAQ;AAAA,MACN;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,EACF;AAEJ;AAaO,MAAM,cAAc,MAAM,WAA4C,CAAC,OAAO,QACnF,oBAAC,UAAA,EAAS,KAAU,UAAU,UAAW,GAAG,OAAO,CACpD;AAED,YAAY,cAAc;"}
1
+ {"version":3,"file":"PrivacyIcon.mjs","sources":["../../../src/components/Icons/PrivacyIcon.tsx"],"sourcesContent":["import * as React from \"react\";\nimport { BaseIcon } from \"./BaseIcon\";\nimport type { BaseIconProps, IconVariants } from \"./types\";\n\nconst VARIANTS: IconVariants = {\n 16: {\n outlined: [\n {\n d: \"M12 13.86a.58.58 0 0 1-.567-.433l-.253-.894a1.24 1.24 0 0 0-.973-.88l-.914-.166a.59.59 0 0 1-.486-.554.59.59 0 0 1 .426-.6l.894-.253a1.24 1.24 0 0 0 .88-.973l.166-.914a.59.59 0 0 1 .554-.486c.273-.02.526.16.6.426l.253.894c.133.46.507.793.973.88l.914.166a.59.59 0 0 1 .486.554.585.585 0 0 1-.426.6l-.894.253a1.24 1.24 0 0 0-.88.973l-.166.914c-.047.273-.314.48-.587.493.013 0-.013 0 0 0m-1.107-3.027c.434.194.794.52 1.027.934a2.2 2.2 0 0 1 .933-1.027 2.2 2.2 0 0 1-1.026-.933c-.194.433-.52.793-.934 1.026\",\n },\n {\n d: \"M7.92 15.16a1.8 1.8 0 0 1-.38-.04c-3.5-.78-6.167-3.887-6.34-7.387l-.147-2.92c-.04-.746.467-1.58 1.147-1.893l3.633-1.7a3.98 3.98 0 0 1 2.98-.147L12.6 2.407c.707.246 1.287 1.026 1.327 1.773l.14 2.927a.5.5 0 0 1-.474.52.516.516 0 0 1-.52-.474l-.14-2.926c-.02-.34-.333-.76-.66-.88L8.487 2.013a2.96 2.96 0 0 0-2.227.114l-3.633 1.7c-.32.146-.587.593-.574.94l.147 2.92c.153 3.053 2.493 5.773 5.56 6.46a.9.9 0 0 0 .413-.02 7 7 0 0 0 1.3-.587c.24-.14.547-.06.68.18.14.24.06.547-.18.68-.473.273-.973.5-1.486.667-.18.06-.38.093-.567.093\",\n },\n ],\n filled: [\n {\n d: \"M9.747 13.48a1.34 1.34 0 0 0-.94-.933l-.94-.254a1.29 1.29 0 0 1-.947-1.253c0-.593.38-1.1.967-1.267l.906-.24c.467-.133.814-.48.94-.94l.247-.9.053-.173c.2-.5.674-.82 1.214-.82.546 0 1.033.32 1.22.813l.033.094.26.973c.06.213.173.393.313.553.147-.56.22-1.14.22-1.72l.014-2.926c0-.547-.42-1.167-.934-1.374L8.66 1.593a3.46 3.46 0 0 0-2.607 0L2.34 3.113c-.507.207-.927.827-.927 1.374v2.926c0 3.26 2.367 6.314 5.6 7.207.22.06.46.06.68 0a7.4 7.4 0 0 0 2.1-.96z\",\n },\n {\n d: \"M14.587 11.053a.3.3 0 0 1-.214.274l-.94.26c-.806.22-1.42.833-1.64 1.64l-.253.913a.29.29 0 0 1-.293.227.29.29 0 0 1-.294-.227l-.253-.927a2.33 2.33 0 0 0-1.64-1.633l-.927-.253a.29.29 0 0 1-.22-.294c0-.073.02-.246.22-.3l.934-.246c.8-.227 1.413-.84 1.633-1.64l.267-.967a.29.29 0 0 1 .28-.187c.066 0 .22.02.28.174l.266.98c.22.8.84 1.413 1.64 1.64l.954.26c.193.073.2.253.2.306\",\n },\n ],\n },\n 24: {\n outlined: [\n {\n d: \"M18 20.79c-.4 0-.75-.26-.85-.65l-.38-1.34a1.86 1.86 0 0 0-1.46-1.32l-1.37-.25a.884.884 0 0 1-.73-.83c-.02-.41.24-.79.64-.9l1.34-.38c.69-.2 1.19-.76 1.32-1.46l.25-1.37c.07-.41.42-.71.83-.73.41-.03.79.24.9.64l.38 1.34c.2.69.76 1.19 1.46 1.32l1.37.25c.41.07.71.42.73.83.02.42-.24.79-.64.9l-1.34.38c-.69.2-1.19.76-1.32 1.46l-.25 1.37c-.07.41-.47.72-.88.74.02 0-.02 0 0 0m-1.66-4.54c.65.29 1.19.78 1.54 1.4.29-.65.78-1.19 1.4-1.54-.65-.29-1.19-.78-1.54-1.4-.29.65-.78 1.19-1.4 1.54\",\n },\n {\n d: \"M11.88 22.74c-.19 0-.39-.02-.57-.06-5.25-1.17-9.25-5.83-9.51-11.08l-.22-4.38c-.06-1.12.7-2.37 1.72-2.84l5.45-2.55c1.39-.65 3.02-.73 4.47-.22l5.68 2c1.06.37 1.93 1.54 1.99 2.66l.21 4.39c.02.41-.3.76-.71.78-.38.01-.76-.3-.78-.71l-.21-4.39c-.03-.51-.5-1.14-.99-1.32l-5.68-2c-1.08-.38-2.3-.32-3.34.17L3.94 5.74c-.48.22-.88.89-.86 1.41l.22 4.38c.23 4.58 3.74 8.66 8.34 9.69.2.04.42.03.62-.03.67-.22 1.33-.52 1.95-.88.36-.21.82-.09 1.02.27.21.36.09.82-.27 1.02-.71.41-1.46.75-2.23 1-.27.09-.57.14-.85.14\",\n },\n ],\n filled: [\n {\n d: \"M14.62 20.22c-.19-.68-.72-1.21-1.41-1.4l-1.41-.38a1.93 1.93 0 0 1-1.42-1.88c0-.89.57-1.65 1.45-1.9l1.36-.36c.7-.2 1.22-.72 1.41-1.41l.37-1.35.08-.26c.3-.75 1.01-1.23 1.82-1.23.82 0 1.55.48 1.83 1.22l.05.14.39 1.46c.09.32.26.59.47.83.22-.84.33-1.71.33-2.58l.02-4.39c0-.82-.63-1.75-1.4-2.06l-5.57-2.28a5.2 5.2 0 0 0-3.91 0L3.51 4.67c-.76.31-1.39 1.24-1.39 2.06v4.39c0 4.89 3.55 9.47 8.4 10.81.33.09.69.09 1.02 0 1.13-.31 2.19-.81 3.15-1.44z\",\n },\n {\n d: \"M21.88 16.58a.45.45 0 0 1-.32.41l-1.41.39a3.48 3.48 0 0 0-2.46 2.46l-.38 1.37c-.09.31-.33.34-.44.34s-.35-.03-.44-.34l-.38-1.39a3.5 3.5 0 0 0-2.46-2.45l-1.39-.38a.44.44 0 0 1-.33-.44c0-.11.03-.37.33-.45l1.4-.37c1.2-.34 2.12-1.26 2.45-2.46l.4-1.45c.1-.25.32-.28.42-.28s.33.03.42.26l.4 1.47c.33 1.2 1.26 2.12 2.46 2.46l1.43.39c.29.11.3.38.3.46\",\n },\n ],\n },\n 32: {\n outlined: [\n {\n d: \"M24 27.72c-.533 0-1-.347-1.133-.867l-.507-1.786a2.48 2.48 0 0 0-1.947-1.76l-1.826-.334a1.18 1.18 0 0 1-.974-1.106 1.18 1.18 0 0 1 .854-1.2l1.786-.507a2.48 2.48 0 0 0 1.76-1.947l.334-1.826a1.18 1.18 0 0 1 1.106-.974c.547-.04 1.054.32 1.2.854l.507 1.786a2.48 2.48 0 0 0 1.947 1.76l1.826.334c.547.093.947.56.974 1.106.026.56-.32 1.054-.854 1.2l-1.786.507a2.48 2.48 0 0 0-1.76 1.947l-.334 1.826c-.093.547-.626.96-1.173.987.027 0-.027 0 0 0m-2.213-6.053a4.43 4.43 0 0 1 2.053 1.866 4.43 4.43 0 0 1 1.867-2.053 4.43 4.43 0 0 1-2.054-1.867 4.43 4.43 0 0 1-1.866 2.054\",\n },\n {\n d: \"M15.84 30.32a3.6 3.6 0 0 1-.76-.08c-7-1.56-12.333-7.773-12.68-14.773l-.293-5.84c-.08-1.494.933-3.16 2.293-3.787l7.267-3.4a7.95 7.95 0 0 1 5.96-.293L25.2 4.813c1.413.494 2.573 2.054 2.653 3.547l.28 5.853a.997.997 0 0 1-.946 1.04c-.507.014-1.014-.4-1.04-.946l-.28-5.854c-.04-.68-.667-1.52-1.32-1.76l-7.574-2.666a5.93 5.93 0 0 0-4.453.226l-7.267 3.4c-.64.294-1.173 1.187-1.146 1.88l.293 5.84c.307 6.107 4.987 11.547 11.12 12.92.267.054.56.04.827-.04a13.8 13.8 0 0 0 2.6-1.173.984.984 0 0 1 1.36.36.984.984 0 0 1-.36 1.36 15.6 15.6 0 0 1-2.974 1.333c-.36.12-.76.187-1.133.187\",\n },\n ],\n filled: [\n {\n d: \"M19.493 26.96a2.68 2.68 0 0 0-1.88-1.867l-1.88-.506a2.57 2.57 0 0 1-1.893-2.507c0-1.187.76-2.2 1.933-2.533l1.814-.48a2.68 2.68 0 0 0 1.88-1.88l.493-1.8.107-.347c.4-1 1.346-1.64 2.426-1.64 1.094 0 2.067.64 2.44 1.627l.067.186.52 1.947c.12.427.347.787.627 1.107a13.6 13.6 0 0 0 .44-3.44l.026-5.854c0-1.093-.84-2.333-1.866-2.746l-7.427-3.04a6.92 6.92 0 0 0-5.213 0L4.68 6.227C3.667 6.64 2.827 7.88 2.827 8.973v5.854c0 6.52 4.733 12.626 11.2 14.413.44.12.92.12 1.36 0a14.8 14.8 0 0 0 4.2-1.92z\",\n },\n {\n d: \"M29.173 22.107a.6.6 0 0 1-.426.546l-1.88.52a4.63 4.63 0 0 0-3.28 3.28l-.507 1.827a.575.575 0 0 1-.587.453.575.575 0 0 1-.586-.453l-.507-1.853a4.66 4.66 0 0 0-3.28-3.267l-1.853-.507a.584.584 0 0 1-.44-.586c0-.147.04-.494.44-.6l1.866-.494a4.68 4.68 0 0 0 3.267-3.28l.533-1.933a.58.58 0 0 1 .56-.373c.134 0 .44.04.56.346l.534 1.96a4.7 4.7 0 0 0 3.28 3.28l1.906.52c.387.147.4.507.4.614\",\n },\n ],\n },\n};\n\n/** Props for {@link PrivacyIcon}. See {@link BaseIconProps} for the shared shape. */\nexport type PrivacyIconProps = BaseIconProps;\n\n/**\n * Privacy icon. Renders at sizes 16, 24, or 32 px with outlined and filled variants.\n *\n * @example\n * ```tsx\n * <PrivacyIcon size={24} filled />\n * ```\n */\nexport const PrivacyIcon = React.forwardRef<SVGSVGElement, PrivacyIconProps>((props, ref) => (\n <BaseIcon ref={ref} variants={VARIANTS} {...props} />\n));\n\nPrivacyIcon.displayName = \"PrivacyIcon\";\n"],"names":[],"mappings":";;;;AAIA,MAAM,WAAyB;AAAA,EAC7B,IAAI;AAAA,IACF,UAAU;AAAA,MACR;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,IAEF,QAAQ;AAAA,MACN;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,EACF;AAAA,EAEF,IAAI;AAAA,IACF,UAAU;AAAA,MACR;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,IAEF,QAAQ;AAAA,MACN;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,EACF;AAAA,EAEF,IAAI;AAAA,IACF,UAAU;AAAA,MACR;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,IAEF,QAAQ;AAAA,MACN;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,EACF;AAEJ;AAaO,MAAM,cAAc,MAAM,WAA4C,CAAC,OAAO,QACnF,oBAAC,UAAA,EAAS,KAAU,UAAU,UAAW,GAAG,OAAO,CACpD;AAED,YAAY,cAAc;"}
@@ -6,7 +6,7 @@ const VARIANTS = {
6
6
  16: {
7
7
  outlined: [
8
8
  {
9
- d: "M4.273 10.607a2.606 2.606 0 1 1 0-5.213 2.606 2.606 0 0 1 0 5.213m0-4.214a1.607 1.607 0 1 0 .002 3.215 1.607 1.607 0 0 0-.002-3.215m7.454-.346a2.606 2.606 0 1 1-.001-5.213 2.606 2.606 0 0 1 0 5.213m0-4.214a1.608 1.608 0 1 0 .001 3.215 1.608 1.608 0 0 0-.002-3.215m.002 13.334a2.606 2.606 0 1 1-.002-5.213 2.606 2.606 0 0 1 .002 5.213m0-4.214a1.608 1.608 0 1 0 .001 3.215 1.608 1.608 0 0 0-.002-3.215"
9
+ d: "M4.273 10.607a2.606 2.606 0 1 1 0-5.213 2.606 2.606 0 0 1 0 5.213m0-4.214a1.607 1.607 0 1 0 .002 3.215 1.607 1.607 0 0 0-.002-3.215m7.454-.346a2.606 2.606 0 1 1-.001-5.213 2.606 2.606 0 0 1 0 5.213m0-4.214a1.608 1.608 0 1 0 .001 3.215 1.608 1.608 0 0 0-.002-3.215m.002 13.334a2.606 2.606 0 1 1-.001-5.213 2.606 2.606 0 0 1 0 5.213m0-4.214a1.608 1.608 0 1 0 .001 3.215 1.608 1.608 0 0 0-.002-3.215"
10
10
  },
11
11
  {
12
12
  d: "M6.067 7.393a.5.5 0 0 1-.26-.927l3.86-2.36a.499.499 0 1 1 .52.854l-3.86 2.36a.53.53 0 0 1-.26.073m3.859 4.574a.53.53 0 0 1-.26-.074l-3.86-2.36a.506.506 0 0 1-.166-.686.497.497 0 0 1 .687-.167l3.86 2.36a.506.506 0 0 1 .166.687.49.49 0 0 1-.427.24"
@@ -1 +1 @@
1
- {"version":3,"file":"ShareIcon.mjs","sources":["../../../src/components/Icons/ShareIcon.tsx"],"sourcesContent":["import * as React from \"react\";\nimport { BaseIcon } from \"./BaseIcon\";\nimport type { BaseIconProps, IconVariants } from \"./types\";\n\nconst VARIANTS: IconVariants = {\n 16: {\n outlined: [\n {\n d: \"M4.273 10.607a2.606 2.606 0 1 1 0-5.213 2.606 2.606 0 0 1 0 5.213m0-4.214a1.607 1.607 0 1 0 .002 3.215 1.607 1.607 0 0 0-.002-3.215m7.454-.346a2.606 2.606 0 1 1-.001-5.213 2.606 2.606 0 0 1 0 5.213m0-4.214a1.608 1.608 0 1 0 .001 3.215 1.608 1.608 0 0 0-.002-3.215m.002 13.334a2.606 2.606 0 1 1-.002-5.213 2.606 2.606 0 0 1 .002 5.213m0-4.214a1.608 1.608 0 1 0 .001 3.215 1.608 1.608 0 0 0-.002-3.215\",\n },\n {\n d: \"M6.067 7.393a.5.5 0 0 1-.26-.927l3.86-2.36a.499.499 0 1 1 .52.854l-3.86 2.36a.53.53 0 0 1-.26.073m3.859 4.574a.53.53 0 0 1-.26-.074l-3.86-2.36a.506.506 0 0 1-.166-.686.497.497 0 0 1 .687-.167l3.86 2.36a.506.506 0 0 1 .166.687.49.49 0 0 1-.427.24\",\n },\n ],\n filled: [\n {\n d: \"M14.333 12.56a2.606 2.606 0 1 1-5.213 0c0-.32.06-.62.167-.9l-3.1-1.893a2.606 2.606 0 1 1 0-3.533l3.1-1.894a2.5 2.5 0 0 1-.167-.9 2.606 2.606 0 1 1 2.607 2.607 2.55 2.55 0 0 1-1.92-.854l-3.1 1.894c.113.28.173.593.173.913s-.06.633-.173.913l3.1 1.894a2.55 2.55 0 0 1 1.92-.854 2.606 2.606 0 0 1 2.606 2.607\",\n },\n ],\n },\n 24: {\n outlined: [\n {\n d: \"M6.41 15.91a3.91 3.91 0 1 1 0-7.82 3.91 3.91 0 1 1 0 7.82m0-6.32a2.411 2.411 0 0 0 0 4.82c1.33 0 2.41-1.08 2.41-2.41S7.74 9.59 6.41 9.59m11.18-.52a3.91 3.91 0 1 1 0-7.82 3.91 3.91 0 1 1 0 7.82m0-6.32c-1.33 0-2.41 1.08-2.41 2.41s1.08 2.41 2.41 2.41S20 6.49 20 5.16s-1.08-2.41-2.41-2.41m0 20a3.91 3.91 0 1 1 0-7.82 3.91 3.91 0 1 1 0 7.82m0-6.32c-1.33 0-2.41 1.08-2.41 2.41s1.08 2.41 2.41 2.41S20 20.17 20 18.84s-1.08-2.41-2.41-2.41\",\n },\n {\n d: \"M9.1 11.09a.75.75 0 0 1-.39-1.39l5.79-3.54a.75.75 0 0 1 .78 1.28l-5.79 3.54c-.12.07-.26.11-.39.11m5.79 6.86c-.13 0-.27-.04-.39-.11L8.71 14.3a.76.76 0 0 1-.25-1.03c.21-.35.67-.47 1.03-.25l5.79 3.54c.35.22.46.68.25 1.03-.14.24-.39.36-.64.36\",\n },\n ],\n filled: [\n {\n d: \"M21.5 18.84a3.91 3.91 0 1 1-7.82 0c0-.48.09-.93.25-1.35l-4.65-2.84a3.9 3.9 0 0 1-2.87 1.26 3.91 3.91 0 1 1 2.87-6.56l4.65-2.84c-.16-.42-.25-.87-.25-1.35a3.91 3.91 0 1 1 7.82 0 3.91 3.91 0 0 1-3.91 3.91c-1.15 0-2.18-.49-2.88-1.28l-4.65 2.84c.17.42.26.89.26 1.37s-.09.95-.26 1.37l4.65 2.84c.7-.79 1.73-1.28 2.88-1.28a3.91 3.91 0 0 1 3.91 3.91\",\n },\n ],\n },\n 32: {\n outlined: [\n {\n d: \"M8.547 21.213A5.21 5.21 0 0 1 3.333 16a5.21 5.21 0 0 1 5.214-5.213A5.213 5.213 0 0 1 13.76 16a5.213 5.213 0 0 1-5.213 5.213m0-8.426A3.215 3.215 0 0 0 5.333 16a3.215 3.215 0 0 0 3.214 3.213A3.215 3.215 0 0 0 11.76 16a3.215 3.215 0 0 0-3.213-3.213m14.906-.694A5.213 5.213 0 0 1 18.24 6.88a5.213 5.213 0 0 1 5.213-5.213 5.21 5.21 0 0 1 5.213 5.213 5.21 5.21 0 0 1-5.213 5.213m0-8.426A3.215 3.215 0 0 0 20.24 6.88a3.215 3.215 0 0 0 3.213 3.213 3.215 3.215 0 0 0 3.213-3.213 3.215 3.215 0 0 0-3.213-3.213m0 26.666a5.21 5.21 0 0 1-5.213-5.213 5.21 5.21 0 0 1 5.213-5.213 5.21 5.21 0 0 1 5.213 5.213 5.21 5.21 0 0 1-5.213 5.213m0-8.426a3.215 3.215 0 0 0-3.213 3.213 3.215 3.215 0 0 0 3.213 3.213 3.215 3.215 0 0 0 3.213-3.213 3.215 3.215 0 0 0-3.213-3.213\",\n },\n {\n d: \"M12.134 14.787c-.334 0-.667-.174-.854-.48-.293-.467-.133-1.08.333-1.374l7.72-4.72a.997.997 0 0 1 1.374.334c.293.466.133 1.08-.334 1.373l-7.72 4.72a1.06 1.06 0 0 1-.52.147m7.72 9.146c-.173 0-.36-.053-.52-.146l-7.72-4.72a1.01 1.01 0 0 1-.333-1.374.995.995 0 0 1 1.373-.333l7.72 4.72c.467.293.614.907.334 1.373a.98.98 0 0 1-.854.48\",\n },\n ],\n filled: [\n {\n d: \"M28.667 25.12a5.21 5.21 0 0 1-5.214 5.213 5.213 5.213 0 0 1-5.213-5.213c0-.64.12-1.24.333-1.8l-6.2-3.787a5.2 5.2 0 0 1-3.826 1.68A5.21 5.21 0 0 1 3.333 16a5.21 5.21 0 0 1 5.214-5.213c1.506 0 2.866.64 3.826 1.68l6.2-3.787a5 5 0 0 1-.333-1.8 5.213 5.213 0 0 1 5.214-5.213 5.21 5.21 0 0 1 5.213 5.213 5.21 5.21 0 0 1-5.214 5.213 5.1 5.1 0 0 1-3.84-1.706l-6.2 3.786c.227.56.347 1.187.347 1.827s-.12 1.267-.346 1.827l6.2 3.786a5.1 5.1 0 0 1 3.84-1.706 5.21 5.21 0 0 1 5.213 5.213\",\n },\n ],\n },\n};\n\n/** Props for {@link ShareIcon}. See {@link BaseIconProps} for the shared shape. */\nexport type ShareIconProps = BaseIconProps;\n\n/**\n * Share icon. Renders at sizes 16, 24, or 32 px with outlined and filled variants.\n *\n * @example\n * ```tsx\n * <ShareIcon size={24} filled />\n * ```\n */\nexport const ShareIcon = React.forwardRef<SVGSVGElement, ShareIconProps>((props, ref) => (\n <BaseIcon ref={ref} variants={VARIANTS} {...props} />\n));\n\nShareIcon.displayName = \"ShareIcon\";\n"],"names":[],"mappings":";;;;AAIA,MAAM,WAAyB;AAAA,EAC7B,IAAI;AAAA,IACF,UAAU;AAAA,MACR;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,IAEF,QAAQ;AAAA,MACN;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,EACF;AAAA,EAEF,IAAI;AAAA,IACF,UAAU;AAAA,MACR;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,IAEF,QAAQ;AAAA,MACN;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,EACF;AAAA,EAEF,IAAI;AAAA,IACF,UAAU;AAAA,MACR;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,IAEF,QAAQ;AAAA,MACN;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,EACF;AAEJ;AAaO,MAAM,YAAY,MAAM,WAA0C,CAAC,OAAO,QAC/E,oBAAC,UAAA,EAAS,KAAU,UAAU,UAAW,GAAG,OAAO,CACpD;AAED,UAAU,cAAc;"}
1
+ {"version":3,"file":"ShareIcon.mjs","sources":["../../../src/components/Icons/ShareIcon.tsx"],"sourcesContent":["import * as React from \"react\";\nimport { BaseIcon } from \"./BaseIcon\";\nimport type { BaseIconProps, IconVariants } from \"./types\";\n\nconst VARIANTS: IconVariants = {\n 16: {\n outlined: [\n {\n d: \"M4.273 10.607a2.606 2.606 0 1 1 0-5.213 2.606 2.606 0 0 1 0 5.213m0-4.214a1.607 1.607 0 1 0 .002 3.215 1.607 1.607 0 0 0-.002-3.215m7.454-.346a2.606 2.606 0 1 1-.001-5.213 2.606 2.606 0 0 1 0 5.213m0-4.214a1.608 1.608 0 1 0 .001 3.215 1.608 1.608 0 0 0-.002-3.215m.002 13.334a2.606 2.606 0 1 1-.001-5.213 2.606 2.606 0 0 1 0 5.213m0-4.214a1.608 1.608 0 1 0 .001 3.215 1.608 1.608 0 0 0-.002-3.215\",\n },\n {\n d: \"M6.067 7.393a.5.5 0 0 1-.26-.927l3.86-2.36a.499.499 0 1 1 .52.854l-3.86 2.36a.53.53 0 0 1-.26.073m3.859 4.574a.53.53 0 0 1-.26-.074l-3.86-2.36a.506.506 0 0 1-.166-.686.497.497 0 0 1 .687-.167l3.86 2.36a.506.506 0 0 1 .166.687.49.49 0 0 1-.427.24\",\n },\n ],\n filled: [\n {\n d: \"M14.333 12.56a2.606 2.606 0 1 1-5.213 0c0-.32.06-.62.167-.9l-3.1-1.893a2.606 2.606 0 1 1 0-3.533l3.1-1.894a2.5 2.5 0 0 1-.167-.9 2.606 2.606 0 1 1 2.607 2.607 2.55 2.55 0 0 1-1.92-.854l-3.1 1.894c.113.28.173.593.173.913s-.06.633-.173.913l3.1 1.894a2.55 2.55 0 0 1 1.92-.854 2.606 2.606 0 0 1 2.606 2.607\",\n },\n ],\n },\n 24: {\n outlined: [\n {\n d: \"M6.41 15.91a3.91 3.91 0 1 1 0-7.82 3.91 3.91 0 1 1 0 7.82m0-6.32a2.411 2.411 0 0 0 0 4.82c1.33 0 2.41-1.08 2.41-2.41S7.74 9.59 6.41 9.59m11.18-.52a3.91 3.91 0 1 1 0-7.82 3.91 3.91 0 1 1 0 7.82m0-6.32c-1.33 0-2.41 1.08-2.41 2.41s1.08 2.41 2.41 2.41S20 6.49 20 5.16s-1.08-2.41-2.41-2.41m0 20a3.91 3.91 0 1 1 0-7.82 3.91 3.91 0 1 1 0 7.82m0-6.32c-1.33 0-2.41 1.08-2.41 2.41s1.08 2.41 2.41 2.41S20 20.17 20 18.84s-1.08-2.41-2.41-2.41\",\n },\n {\n d: \"M9.1 11.09a.75.75 0 0 1-.39-1.39l5.79-3.54a.75.75 0 0 1 .78 1.28l-5.79 3.54c-.12.07-.26.11-.39.11m5.79 6.86c-.13 0-.27-.04-.39-.11L8.71 14.3a.76.76 0 0 1-.25-1.03c.21-.35.67-.47 1.03-.25l5.79 3.54c.35.22.46.68.25 1.03-.14.24-.39.36-.64.36\",\n },\n ],\n filled: [\n {\n d: \"M21.5 18.84a3.91 3.91 0 1 1-7.82 0c0-.48.09-.93.25-1.35l-4.65-2.84a3.9 3.9 0 0 1-2.87 1.26 3.91 3.91 0 1 1 2.87-6.56l4.65-2.84c-.16-.42-.25-.87-.25-1.35a3.91 3.91 0 1 1 7.82 0 3.91 3.91 0 0 1-3.91 3.91c-1.15 0-2.18-.49-2.88-1.28l-4.65 2.84c.17.42.26.89.26 1.37s-.09.95-.26 1.37l4.65 2.84c.7-.79 1.73-1.28 2.88-1.28a3.91 3.91 0 0 1 3.91 3.91\",\n },\n ],\n },\n 32: {\n outlined: [\n {\n d: \"M8.547 21.213A5.21 5.21 0 0 1 3.333 16a5.21 5.21 0 0 1 5.214-5.213A5.213 5.213 0 0 1 13.76 16a5.213 5.213 0 0 1-5.213 5.213m0-8.426A3.215 3.215 0 0 0 5.333 16a3.215 3.215 0 0 0 3.214 3.213A3.215 3.215 0 0 0 11.76 16a3.215 3.215 0 0 0-3.213-3.213m14.906-.694A5.213 5.213 0 0 1 18.24 6.88a5.213 5.213 0 0 1 5.213-5.213 5.21 5.21 0 0 1 5.213 5.213 5.21 5.21 0 0 1-5.213 5.213m0-8.426A3.215 3.215 0 0 0 20.24 6.88a3.215 3.215 0 0 0 3.213 3.213 3.215 3.215 0 0 0 3.213-3.213 3.215 3.215 0 0 0-3.213-3.213m0 26.666a5.21 5.21 0 0 1-5.213-5.213 5.21 5.21 0 0 1 5.213-5.213 5.21 5.21 0 0 1 5.213 5.213 5.21 5.21 0 0 1-5.213 5.213m0-8.426a3.215 3.215 0 0 0-3.213 3.213 3.215 3.215 0 0 0 3.213 3.213 3.215 3.215 0 0 0 3.213-3.213 3.215 3.215 0 0 0-3.213-3.213\",\n },\n {\n d: \"M12.134 14.787c-.334 0-.667-.174-.854-.48-.293-.467-.133-1.08.333-1.374l7.72-4.72a.997.997 0 0 1 1.374.334c.293.466.133 1.08-.334 1.373l-7.72 4.72a1.06 1.06 0 0 1-.52.147m7.72 9.146c-.173 0-.36-.053-.52-.146l-7.72-4.72a1.01 1.01 0 0 1-.333-1.374.995.995 0 0 1 1.373-.333l7.72 4.72c.467.293.614.907.334 1.373a.98.98 0 0 1-.854.48\",\n },\n ],\n filled: [\n {\n d: \"M28.667 25.12a5.21 5.21 0 0 1-5.214 5.213 5.213 5.213 0 0 1-5.213-5.213c0-.64.12-1.24.333-1.8l-6.2-3.787a5.2 5.2 0 0 1-3.826 1.68A5.21 5.21 0 0 1 3.333 16a5.21 5.21 0 0 1 5.214-5.213c1.506 0 2.866.64 3.826 1.68l6.2-3.787a5 5 0 0 1-.333-1.8 5.213 5.213 0 0 1 5.214-5.213 5.21 5.21 0 0 1 5.213 5.213 5.21 5.21 0 0 1-5.214 5.213 5.1 5.1 0 0 1-3.84-1.706l-6.2 3.786c.227.56.347 1.187.347 1.827s-.12 1.267-.346 1.827l6.2 3.786a5.1 5.1 0 0 1 3.84-1.706 5.21 5.21 0 0 1 5.213 5.213\",\n },\n ],\n },\n};\n\n/** Props for {@link ShareIcon}. See {@link BaseIconProps} for the shared shape. */\nexport type ShareIconProps = BaseIconProps;\n\n/**\n * Share icon. Renders at sizes 16, 24, or 32 px with outlined and filled variants.\n *\n * @example\n * ```tsx\n * <ShareIcon size={24} filled />\n * ```\n */\nexport const ShareIcon = React.forwardRef<SVGSVGElement, ShareIconProps>((props, ref) => (\n <BaseIcon ref={ref} variants={VARIANTS} {...props} />\n));\n\nShareIcon.displayName = \"ShareIcon\";\n"],"names":[],"mappings":";;;;AAIA,MAAM,WAAyB;AAAA,EAC7B,IAAI;AAAA,IACF,UAAU;AAAA,MACR;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,IAEF,QAAQ;AAAA,MACN;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,EACF;AAAA,EAEF,IAAI;AAAA,IACF,UAAU;AAAA,MACR;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,IAEF,QAAQ;AAAA,MACN;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,EACF;AAAA,EAEF,IAAI;AAAA,IACF,UAAU;AAAA,MACR;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,IAEF,QAAQ;AAAA,MACN;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,EACF;AAEJ;AAaO,MAAM,YAAY,MAAM,WAA0C,CAAC,OAAO,QAC/E,oBAAC,UAAA,EAAS,KAAU,UAAU,UAAW,GAAG,OAAO,CACpD;AAED,UAAU,cAAc;"}
@@ -39,7 +39,7 @@ const VARIANTS = {
39
39
  d: "M16 30.333C8.093 30.333 1.667 23.907 1.667 16S8.093 1.667 16 1.667 30.333 8.093 30.333 16 23.907 30.333 16 30.333m0-26.666C9.2 3.667 3.667 9.2 3.667 16S9.2 28.333 16 28.333 28.333 22.8 28.333 16 22.8 3.667 16 3.667"
40
40
  },
41
41
  {
42
- d: "M14.107 20.773a1 1 0 0 1-.707-.294l-3.773-3.773a1.006 1.006 0 0 1 0-1.413 1.006 1.006 0 0 1 1.413 0l3.067 3.066 6.853-6.853a1.006 1.006 0 0 1 1.413 0 1.006 1.006 0 0 1 0 1.413l-7.56 7.56a1 1 0 0 1-.707.294"
42
+ d: "M14.107 20.773a1 1 0 0 1-.707-.293l-3.773-3.774a1.006 1.006 0 0 1 0-1.413 1.006 1.006 0 0 1 1.413 0l3.067 3.067 6.853-6.854a1.006 1.006 0 0 1 1.413 0 1.006 1.006 0 0 1 0 1.413l-7.56 7.56a1 1 0 0 1-.707.294"
43
43
  }
44
44
  ],
45
45
  filled: [
@@ -1 +1 @@
1
- {"version":3,"file":"TickCircleIcon.mjs","sources":["../../../src/components/Icons/TickCircleIcon.tsx"],"sourcesContent":["import * as React from \"react\";\nimport { BaseIcon } from \"./BaseIcon\";\nimport type { BaseIconProps, IconVariants } from \"./types\";\n\nconst VARIANTS: IconVariants = {\n 16: {\n outlined: [\n {\n d: \"M8 15.167A7.173 7.173 0 0 1 .833 8 7.173 7.173 0 0 1 8 .833 7.173 7.173 0 0 1 15.167 8 7.173 7.173 0 0 1 8 15.167M8 1.833A6.174 6.174 0 0 0 1.833 8c0 3.4 2.767 6.167 6.167 6.167S14.167 11.4 14.167 8 11.4 1.833 8 1.833\",\n },\n {\n d: \"M7.053 10.386a.5.5 0 0 1-.353-.146L4.813 8.353a.503.503 0 0 1 0-.707.503.503 0 0 1 .707 0L7.053 9.18l3.427-3.427a.503.503 0 0 1 .707 0 .503.503 0 0 1 0 .707l-3.78 3.78a.5.5 0 0 1-.354.146\",\n },\n ],\n filled: [\n {\n d: \"M8 1.333C4.327 1.333 1.333 4.327 1.333 8S4.327 14.667 8 14.667 14.667 11.673 14.667 8 11.673 1.333 8 1.333m3.187 5.134-3.78 3.78a.5.5 0 0 1-.707 0L4.813 8.36a.503.503 0 0 1 0-.707.503.503 0 0 1 .707 0l1.533 1.534L10.48 5.76a.503.503 0 0 1 .707 0 .503.503 0 0 1 0 .707\",\n },\n ],\n },\n 24: {\n outlined: [\n {\n d: \"M12 22.75C6.07 22.75 1.25 17.93 1.25 12S6.07 1.25 12 1.25 22.75 6.07 22.75 12 17.93 22.75 12 22.75m0-20C6.9 2.75 2.75 6.9 2.75 12S6.9 21.25 12 21.25s9.25-4.15 9.25-9.25S17.1 2.75 12 2.75\",\n },\n {\n d: \"M10.58 15.58a.75.75 0 0 1-.53-.22l-2.83-2.83a.754.754 0 0 1 0-1.06c.29-.29.77-.29 1.06 0l2.3 2.3 5.14-5.14c.29-.29.77-.29 1.06 0s.29.77 0 1.06l-5.67 5.67a.75.75 0 0 1-.53.22\",\n },\n ],\n filled: [\n {\n d: \"M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2m4.78 7.7-5.67 5.67a.75.75 0 0 1-1.06 0l-2.83-2.83a.754.754 0 0 1 0-1.06c.29-.29.77-.29 1.06 0l2.3 2.3 5.14-5.14c.29-.29.77-.29 1.06 0s.29.76 0 1.06\",\n },\n ],\n },\n 32: {\n outlined: [\n {\n d: \"M16 30.333C8.093 30.333 1.667 23.907 1.667 16S8.093 1.667 16 1.667 30.333 8.093 30.333 16 23.907 30.333 16 30.333m0-26.666C9.2 3.667 3.667 9.2 3.667 16S9.2 28.333 16 28.333 28.333 22.8 28.333 16 22.8 3.667 16 3.667\",\n },\n {\n d: \"M14.107 20.773a1 1 0 0 1-.707-.294l-3.773-3.773a1.006 1.006 0 0 1 0-1.413 1.006 1.006 0 0 1 1.413 0l3.067 3.066 6.853-6.853a1.006 1.006 0 0 1 1.413 0 1.006 1.006 0 0 1 0 1.413l-7.56 7.56a1 1 0 0 1-.707.294\",\n },\n ],\n filled: [\n {\n d: \"M16 2.667C8.653 2.667 2.667 8.653 2.667 16S8.653 29.333 16 29.333 29.333 23.347 29.333 16 23.347 2.667 16 2.667m6.373 10.266-7.56 7.56a1 1 0 0 1-1.413 0L9.627 16.72a1.006 1.006 0 0 1 0-1.413 1.006 1.006 0 0 1 1.413 0l3.067 3.066 6.853-6.853a1.006 1.006 0 0 1 1.413 0 1.006 1.006 0 0 1 0 1.413\",\n },\n ],\n },\n};\n\n/** Props for {@link TickCircleIcon}. See {@link BaseIconProps} for the shared shape. */\nexport type TickCircleIconProps = BaseIconProps;\n\n/**\n * Tick Circle icon. Renders at sizes 16, 24, or 32 px with outlined and filled variants.\n *\n * @example\n * ```tsx\n * <TickCircleIcon size={24} filled />\n * ```\n */\nexport const TickCircleIcon = React.forwardRef<SVGSVGElement, TickCircleIconProps>((props, ref) => (\n <BaseIcon ref={ref} variants={VARIANTS} {...props} />\n));\n\nTickCircleIcon.displayName = \"TickCircleIcon\";\n"],"names":[],"mappings":";;;;AAIA,MAAM,WAAyB;AAAA,EAC7B,IAAI;AAAA,IACF,UAAU;AAAA,MACR;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,IAEF,QAAQ;AAAA,MACN;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,EACF;AAAA,EAEF,IAAI;AAAA,IACF,UAAU;AAAA,MACR;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,IAEF,QAAQ;AAAA,MACN;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,EACF;AAAA,EAEF,IAAI;AAAA,IACF,UAAU;AAAA,MACR;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,IAEF,QAAQ;AAAA,MACN;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,EACF;AAEJ;AAaO,MAAM,iBAAiB,MAAM,WAA+C,CAAC,OAAO,QACzF,oBAAC,UAAA,EAAS,KAAU,UAAU,UAAW,GAAG,OAAO,CACpD;AAED,eAAe,cAAc;"}
1
+ {"version":3,"file":"TickCircleIcon.mjs","sources":["../../../src/components/Icons/TickCircleIcon.tsx"],"sourcesContent":["import * as React from \"react\";\nimport { BaseIcon } from \"./BaseIcon\";\nimport type { BaseIconProps, IconVariants } from \"./types\";\n\nconst VARIANTS: IconVariants = {\n 16: {\n outlined: [\n {\n d: \"M8 15.167A7.173 7.173 0 0 1 .833 8 7.173 7.173 0 0 1 8 .833 7.173 7.173 0 0 1 15.167 8 7.173 7.173 0 0 1 8 15.167M8 1.833A6.174 6.174 0 0 0 1.833 8c0 3.4 2.767 6.167 6.167 6.167S14.167 11.4 14.167 8 11.4 1.833 8 1.833\",\n },\n {\n d: \"M7.053 10.386a.5.5 0 0 1-.353-.146L4.813 8.353a.503.503 0 0 1 0-.707.503.503 0 0 1 .707 0L7.053 9.18l3.427-3.427a.503.503 0 0 1 .707 0 .503.503 0 0 1 0 .707l-3.78 3.78a.5.5 0 0 1-.354.146\",\n },\n ],\n filled: [\n {\n d: \"M8 1.333C4.327 1.333 1.333 4.327 1.333 8S4.327 14.667 8 14.667 14.667 11.673 14.667 8 11.673 1.333 8 1.333m3.187 5.134-3.78 3.78a.5.5 0 0 1-.707 0L4.813 8.36a.503.503 0 0 1 0-.707.503.503 0 0 1 .707 0l1.533 1.534L10.48 5.76a.503.503 0 0 1 .707 0 .503.503 0 0 1 0 .707\",\n },\n ],\n },\n 24: {\n outlined: [\n {\n d: \"M12 22.75C6.07 22.75 1.25 17.93 1.25 12S6.07 1.25 12 1.25 22.75 6.07 22.75 12 17.93 22.75 12 22.75m0-20C6.9 2.75 2.75 6.9 2.75 12S6.9 21.25 12 21.25s9.25-4.15 9.25-9.25S17.1 2.75 12 2.75\",\n },\n {\n d: \"M10.58 15.58a.75.75 0 0 1-.53-.22l-2.83-2.83a.754.754 0 0 1 0-1.06c.29-.29.77-.29 1.06 0l2.3 2.3 5.14-5.14c.29-.29.77-.29 1.06 0s.29.77 0 1.06l-5.67 5.67a.75.75 0 0 1-.53.22\",\n },\n ],\n filled: [\n {\n d: \"M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2m4.78 7.7-5.67 5.67a.75.75 0 0 1-1.06 0l-2.83-2.83a.754.754 0 0 1 0-1.06c.29-.29.77-.29 1.06 0l2.3 2.3 5.14-5.14c.29-.29.77-.29 1.06 0s.29.76 0 1.06\",\n },\n ],\n },\n 32: {\n outlined: [\n {\n d: \"M16 30.333C8.093 30.333 1.667 23.907 1.667 16S8.093 1.667 16 1.667 30.333 8.093 30.333 16 23.907 30.333 16 30.333m0-26.666C9.2 3.667 3.667 9.2 3.667 16S9.2 28.333 16 28.333 28.333 22.8 28.333 16 22.8 3.667 16 3.667\",\n },\n {\n d: \"M14.107 20.773a1 1 0 0 1-.707-.293l-3.773-3.774a1.006 1.006 0 0 1 0-1.413 1.006 1.006 0 0 1 1.413 0l3.067 3.067 6.853-6.854a1.006 1.006 0 0 1 1.413 0 1.006 1.006 0 0 1 0 1.413l-7.56 7.56a1 1 0 0 1-.707.294\",\n },\n ],\n filled: [\n {\n d: \"M16 2.667C8.653 2.667 2.667 8.653 2.667 16S8.653 29.333 16 29.333 29.333 23.347 29.333 16 23.347 2.667 16 2.667m6.373 10.266-7.56 7.56a1 1 0 0 1-1.413 0L9.627 16.72a1.006 1.006 0 0 1 0-1.413 1.006 1.006 0 0 1 1.413 0l3.067 3.066 6.853-6.853a1.006 1.006 0 0 1 1.413 0 1.006 1.006 0 0 1 0 1.413\",\n },\n ],\n },\n};\n\n/** Props for {@link TickCircleIcon}. See {@link BaseIconProps} for the shared shape. */\nexport type TickCircleIconProps = BaseIconProps;\n\n/**\n * Tick Circle icon. Renders at sizes 16, 24, or 32 px with outlined and filled variants.\n *\n * @example\n * ```tsx\n * <TickCircleIcon size={24} filled />\n * ```\n */\nexport const TickCircleIcon = React.forwardRef<SVGSVGElement, TickCircleIconProps>((props, ref) => (\n <BaseIcon ref={ref} variants={VARIANTS} {...props} />\n));\n\nTickCircleIcon.displayName = \"TickCircleIcon\";\n"],"names":[],"mappings":";;;;AAIA,MAAM,WAAyB;AAAA,EAC7B,IAAI;AAAA,IACF,UAAU;AAAA,MACR;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,IAEF,QAAQ;AAAA,MACN;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,EACF;AAAA,EAEF,IAAI;AAAA,IACF,UAAU;AAAA,MACR;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,IAEF,QAAQ;AAAA,MACN;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,EACF;AAAA,EAEF,IAAI;AAAA,IACF,UAAU;AAAA,MACR;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,IAEF,QAAQ;AAAA,MACN;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,EACF;AAEJ;AAaO,MAAM,iBAAiB,MAAM,WAA+C,CAAC,OAAO,QACzF,oBAAC,UAAA,EAAS,KAAU,UAAU,UAAW,GAAG,OAAO,CACpD;AAED,eAAe,cAAc;"}
@@ -20,7 +20,7 @@ const VARIANTS = {
20
20
  ],
21
21
  filled: [
22
22
  {
23
- d: "M15.667 11.14v2c0 .92-.747 1.667-1.667 1.667H9.24a.666.666 0 0 1-.473-1.134l3.913-4c.127-.126.3-.2.473-.2H14c.92 0 1.667.747 1.667 1.667M11.44 9.473 9.8 11.107c-.42.42-1.14.126-1.14-.467V4.98c0-.18.073-.347.193-.473l.614-.614a1.666 1.666 0 0 1 2.36 0l1.413 1.414c.66.653.66 1.706 0 2.36zm-7.44-8c-.153 0-.287.02-.427.047l.087.313a.96.96 0 0 0 .673.68l.647.174c.378.116.66.465.66.866a.88.88 0 0 1-.633.834l-.66.18a.95.95 0 0 0-.68.68l-.174.64a.86.86 0 0 1-.846.646 1 1 0 0 1-.314-.06v5.667q.001.272.054.533.029.13.066.26.049.151.107.294v.02q.138.28.327.533.11.129.22.247a3 3 0 0 0 .773.547c.1.046.2.08.307.113a4 4 0 0 0 .26.066q.261.053.533.054c.273 0 .553-.04.813-.127.074-.027.147-.053.22-.087a2.3 2.3 0 0 0 .66-.4c.06-.046.127-.106.187-.166L6.887 14c.466-.48.76-1.14.76-1.86v-9c0-1-.667-1.667-1.667-1.667zM5 13.14a1 1 0 1 1 0-2 1 1 0 1 1 0 2"
23
+ d: "M15.667 11.14v2c0 .92-.747 1.667-1.667 1.667H9.24a.665.665 0 0 1-.473-1.134l3.913-4c.127-.126.3-.2.473-.2H14c.92 0 1.667.747 1.667 1.667M11.44 9.473 9.8 11.107c-.42.42-1.14.126-1.14-.467V4.98c0-.18.073-.347.193-.473l.614-.614a1.666 1.666 0 0 1 2.36 0l1.413 1.414c.66.653.66 1.706 0 2.36zm-7.44-8c-.153 0-.287.02-.427.047l.087.313a.96.96 0 0 0 .673.68l.647.174c.378.116.66.465.66.866a.88.88 0 0 1-.633.834l-.66.18a.95.95 0 0 0-.68.68l-.174.64a.86.86 0 0 1-.846.646 1 1 0 0 1-.314-.06v5.667a2.8 2.8 0 0 0 .12.793q.049.151.107.294v.02q.138.28.327.533.11.129.22.247a3 3 0 0 0 .773.547c.1.046.2.08.307.113a4 4 0 0 0 .26.066q.261.053.533.054c.273 0 .553-.04.813-.127.074-.027.147-.053.22-.087a2.3 2.3 0 0 0 .66-.4c.06-.046.127-.106.187-.166L6.887 14c.466-.48.76-1.14.76-1.86v-9c0-1-.667-1.667-1.667-1.667zM5 13.14a1 1 0 1 1 0-2 1 1 0 1 1 0 2"
24
24
  },
25
25
  {
26
26
  d: "M4.993 3.547a.21.21 0 0 1-.153.193l-.653.18A1.61 1.61 0 0 0 3.04 5.067l-.173.64c-.04.146-.154.16-.207.16s-.167-.014-.207-.16L2.28 5.06a1.62 1.62 0 0 0-1.147-1.14l-.646-.173a.205.205 0 0 1-.154-.207c0-.053.014-.173.154-.213l.653-.174c.56-.16.987-.586 1.14-1.146l.187-.68a.21.21 0 0 1 .193-.134c.04 0 .153.014.193.12L3.04 2c.153.56.587.987 1.147 1.147l.666.186c.134.054.14.174.14.214"
@@ -1 +1 @@
1
- {"version":3,"file":"ToolsIcon.mjs","sources":["../../../src/components/Icons/ToolsIcon.tsx"],"sourcesContent":["import * as React from \"react\";\nimport { BaseIcon } from \"./BaseIcon\";\nimport type { BaseIconProps, IconVariants } from \"./types\";\n\nconst VARIANTS: IconVariants = {\n 16: {\n outlined: [\n {\n d: \"M3.033 7.246a.57.57 0 0 1-.566-.46l-.18-.78a1.03 1.03 0 0 0-.76-.76l-.787-.18A.57.57 0 0 1 .293 4.5c0-.28.187-.514.454-.567l.78-.18c.373-.087.673-.38.76-.76l.18-.787a.57.57 0 0 1 .566-.446c.28 0 .514.186.567.46l.18.78c.087.373.387.673.76.76l.787.18c.26.053.446.286.446.566s-.186.507-.453.567l-.787.18a1.03 1.03 0 0 0-.76.76l-.18.787a.57.57 0 0 1-.566.446zm-.713-2.74c.293.174.54.42.713.714.174-.294.42-.54.714-.714a2 2 0 0 1-.714-.713 2 2 0 0 1-.713.713\",\n },\n {\n d: \"M5.16 14.78q-.29 0-.6-.06c-.107-.027-.2-.047-.293-.074a2.4 2.4 0 0 1-.307-.113c-.02-.006-.047-.02-.067-.026a3.4 3.4 0 0 1-.58-.36 2.3 2.3 0 0 1-.3-.267c-.08-.087-.146-.167-.22-.247a3.1 3.1 0 0 1-.506-.96 3 3 0 0 1-.074-.287c-.04-.22-.06-.42-.06-.613V8.88c0-.273.227-.5.5-.5.274 0 .5.227.5.5v2.893c0 .127.014.267.04.407.014.053.027.12.047.193q.114.35.333.647l.167.187c.06.066.113.106.173.153.182.136.421.283.647.333.067.02.14.034.207.053.32.06.706.04 1-.053q.07-.03.16-.06c.2-.08.36-.18.5-.3q.088-.071.146-.133c.394-.4.594-.9.594-1.42V3.293c0-.666-.4-1.066-1.067-1.066h-.58a.504.504 0 0 1-.5-.5c0-.274.227-.5.5-.5h.58c1.22 0 2.067.853 2.067 2.066v8.48A3 3 0 0 1 7.053 14.1c-.2.18-.46.333-.74.447a2.9 2.9 0 0 1-1.16.233z\",\n },\n {\n d: \"M13.633 14.78H5.16a.504.504 0 0 1-.5-.5c0-.274.227-.5.5-.5.213 0 .427-.034.607-.094q.07-.03.16-.06c.2-.08.36-.18.5-.3q.088-.071.146-.133l4.294-4.287a.5.5 0 0 1 .353-.146h2.413c1.22 0 2.067.853 2.067 2.066v1.887c0 1.22-.853 2.067-2.067 2.067m-6.226-1h6.233c.667 0 1.067-.4 1.067-1.067v-1.887c0-.666-.4-1.066-1.067-1.066h-2.207z\",\n },\n {\n d: \"M6.953 14.02a.503.503 0 0 1-.36-.853c.374-.38.574-.88.574-1.4V5.7a.5.5 0 0 1 .146-.354l1.7-1.7c.834-.833 2.1-.833 2.927 0l1.333 1.334c.86.86.86 2.066 0 2.926L7.3 13.873c-.1.1-.227.147-.353.147zm1.214-8.114v5.687l4.4-4.4c.466-.467.466-1.047 0-1.513l-1.334-1.334c-.46-.46-1.053-.46-1.513 0L8.167 5.9zM5.16 12.893a1.13 1.13 0 0 1-1.127-1.126c0-.62.507-1.127 1.127-1.127s1.127.507 1.127 1.127a1.13 1.13 0 0 1-1.127 1.126m0-1.253a.127.127 0 0 0-.127.127c0 .14.254.14.254 0a.127.127 0 0 0-.127-.127\",\n },\n ],\n filled: [\n {\n d: \"M15.667 11.14v2c0 .92-.747 1.667-1.667 1.667H9.24a.666.666 0 0 1-.473-1.134l3.913-4c.127-.126.3-.2.473-.2H14c.92 0 1.667.747 1.667 1.667M11.44 9.473 9.8 11.107c-.42.42-1.14.126-1.14-.467V4.98c0-.18.073-.347.193-.473l.614-.614a1.666 1.666 0 0 1 2.36 0l1.413 1.414c.66.653.66 1.706 0 2.36zm-7.44-8c-.153 0-.287.02-.427.047l.087.313a.96.96 0 0 0 .673.68l.647.174c.378.116.66.465.66.866a.88.88 0 0 1-.633.834l-.66.18a.95.95 0 0 0-.68.68l-.174.64a.86.86 0 0 1-.846.646 1 1 0 0 1-.314-.06v5.667q.001.272.054.533.029.13.066.26.049.151.107.294v.02q.138.28.327.533.11.129.22.247a3 3 0 0 0 .773.547c.1.046.2.08.307.113a4 4 0 0 0 .26.066q.261.053.533.054c.273 0 .553-.04.813-.127.074-.027.147-.053.22-.087a2.3 2.3 0 0 0 .66-.4c.06-.046.127-.106.187-.166L6.887 14c.466-.48.76-1.14.76-1.86v-9c0-1-.667-1.667-1.667-1.667zM5 13.14a1 1 0 1 1 0-2 1 1 0 1 1 0 2\",\n },\n {\n d: \"M4.993 3.547a.21.21 0 0 1-.153.193l-.653.18A1.61 1.61 0 0 0 3.04 5.067l-.173.64c-.04.146-.154.16-.207.16s-.167-.014-.207-.16L2.28 5.06a1.62 1.62 0 0 0-1.147-1.14l-.646-.173a.205.205 0 0 1-.154-.207c0-.053.014-.173.154-.213l.653-.174c.56-.16.987-.586 1.14-1.146l.187-.68a.21.21 0 0 1 .193-.134c.04 0 .153.014.193.12L3.04 2c.153.56.587.987 1.147 1.147l.666.186c.134.054.14.174.14.214\",\n },\n ],\n },\n 24: {\n outlined: [\n {\n d: \"M4.55 10.87a.85.85 0 0 1-.85-.69l-.27-1.17C3.3 8.45 2.85 8 2.29 7.87L1.11 7.6a.85.85 0 0 1-.67-.85c0-.42.28-.77.68-.85l1.17-.27c.56-.13 1.01-.57 1.14-1.14l.27-1.18c.08-.39.43-.67.85-.67s.77.28.85.69l.27 1.17c.13.56.58 1.01 1.14 1.14l1.18.27c.39.08.67.43.67.85s-.28.76-.68.85l-1.18.27c-.56.13-1.01.58-1.14 1.14l-.27 1.18c-.08.39-.43.67-.85.67zM3.48 6.76c.44.26.81.63 1.07 1.07.26-.44.63-.81 1.07-1.07-.44-.26-.81-.63-1.07-1.07-.26.44-.63.81-1.07 1.07\",\n },\n {\n d: \"M7.74 22.17q-.435 0-.9-.09c-.16-.04-.3-.07-.44-.11-.16-.05-.31-.1-.46-.17-.03-.01-.07-.03-.1-.04a5 5 0 0 1-.87-.54 3.5 3.5 0 0 1-.45-.4c-.12-.13-.22-.25-.33-.37a4.6 4.6 0 0 1-.76-1.44c-.05-.15-.08-.29-.11-.43-.06-.33-.09-.63-.09-.92v-4.34c0-.41.34-.75.75-.75s.75.34.75.75v4.34c0 .19.02.4.06.61.02.08.04.18.07.29.116.347.28.675.5.97.07.08.16.18.25.28s.17.16.26.23c.273.204.632.425.97.5.1.03.21.05.31.08.48.09 1.06.06 1.5-.08q.105-.045.24-.09c.3-.12.54-.27.75-.45.09-.07.16-.14.22-.2.59-.6.89-1.35.89-2.13V4.94c0-1-.6-1.6-1.6-1.6h-.87c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h.87c1.83 0 3.1 1.28 3.1 3.1v12.72c0 1.18-.46 2.3-1.29 3.15-.15.15-.27.26-.38.34-.3.27-.69.5-1.11.67a4.4 4.4 0 0 1-1.74.35z\",\n },\n {\n d: \"M20.45 22.17H7.74c-.41 0-.75-.34-.75-.75s.34-.75.75-.75c.32 0 .64-.05.91-.14q.105-.045.24-.09c.3-.12.54-.27.75-.45.09-.07.16-.14.22-.2l6.44-6.43a.75.75 0 0 1 .53-.22h3.62c1.83 0 3.1 1.28 3.1 3.1v2.83c0 1.83-1.28 3.1-3.1 3.1m-9.34-1.5h9.35c1 0 1.6-.6 1.6-1.6v-2.83c0-1-.6-1.6-1.6-1.6h-3.31z\",\n },\n {\n d: \"M10.43 21.03a.754.754 0 0 1-.54-1.28c.56-.57.86-1.32.86-2.1v-9.1c0-.2.08-.39.22-.53l2.55-2.55c1.25-1.25 3.15-1.25 4.39 0l2 2c1.29 1.29 1.29 3.1 0 4.39l-8.96 8.95c-.15.15-.34.22-.53.22zm1.82-12.17v8.53l6.6-6.6c.7-.7.7-1.57 0-2.27l-2-2c-.69-.69-1.58-.69-2.27 0l-2.33 2.33zM7.74 19.34c-.93 0-1.69-.76-1.69-1.69s.76-1.69 1.69-1.69 1.69.76 1.69 1.69-.76 1.69-1.69 1.69m0-1.88a.19.19 0 0 0-.19.19c0 .21.38.21.38 0a.19.19 0 0 0-.19-.19\",\n },\n ],\n filled: [\n {\n d: \"M23.5 16.71v3a2.5 2.5 0 0 1-2.5 2.5h-7.14c-.89 0-1.33-1.07-.71-1.7l5.87-6c.19-.19.45-.3.71-.3H21a2.5 2.5 0 0 1 2.5 2.5m-6.34-2.5-2.46 2.45c-.63.63-1.71.19-1.71-.7V7.47c0-.27.11-.52.29-.71l.92-.92c.98-.98 2.56-.98 3.54 0l2.12 2.12c.99.98.99 2.56 0 3.54zM6 2.21c-.23 0-.43.03-.64.07l.13.47c.13.5.52.88 1.01 1.02l.97.26c.568.175.99.699.99 1.3 0 .583-.399 1.076-.95 1.25l-.99.27c-.51.14-.88.51-1.02 1.02l-.26.96c-.16.59-.66.97-1.27.97-.17 0-.33-.04-.47-.09v8.5c0 .27.03.54.08.8.03.13.06.26.1.39.05.15.1.3.16.44v.03c.14.28.3.55.49.8.11.13.22.25.33.37s.23.22.36.32c.25.2.52.36.8.5.15.07.3.12.46.17.13.04.26.07.39.1.26.05.53.08.8.08.41 0 .83-.06 1.22-.19.11-.04.22-.08.33-.13.35-.14.69-.34.99-.6.09-.07.19-.16.28-.25l.04-.04c.7-.72 1.14-1.71 1.14-2.79V4.71c0-1.5-1-2.5-2.5-2.5zm1.5 17.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5\",\n },\n {\n d: \"M7.49 5.32c0 .07-.04.23-.23.29l-.98.27c-.85.23-1.49.87-1.72 1.72l-.26.96c-.06.22-.23.24-.31.24s-.25-.02-.31-.24l-.26-.97c-.23-.84-.88-1.48-1.72-1.71l-.97-.26C.52 5.56.5 5.38.5 5.31c0-.08.02-.26.23-.32l.98-.26c.84-.24 1.48-.88 1.71-1.72l.28-1.02c.07-.17.23-.2.29-.2s.23.02.29.18L4.56 3c.23.84.88 1.48 1.72 1.72l1 .28c.2.08.21.26.21.32\",\n },\n ],\n },\n 32: {\n outlined: [\n {\n d: \"M6.067 14.493c-.56 0-1.027-.373-1.134-.92l-.36-1.56a2.05 2.05 0 0 0-1.52-1.52l-1.573-.36C.96 10.026.587 9.56.587 9s.373-1.027.906-1.134l1.56-.36a2.03 2.03 0 0 0 1.52-1.52l.36-1.573c.107-.52.574-.893 1.134-.893s1.026.373 1.133.92L7.56 6a2.05 2.05 0 0 0 1.52 1.52l1.573.36c.52.106.893.573.893 1.133s-.373 1.013-.906 1.133l-1.573.36a2.05 2.05 0 0 0-1.52 1.52l-.36 1.574c-.107.52-.574.893-1.134.893zM4.64 9.013c.587.347 1.08.84 1.427 1.427a4.06 4.06 0 0 1 1.426-1.427 4.06 4.06 0 0 1-1.426-1.427A4.06 4.06 0 0 1 4.64 9.013\",\n },\n {\n d: \"M10.32 29.56q-.58 0-1.2-.12c-.213-.054-.4-.094-.587-.147a5 5 0 0 1-.613-.227c-.04-.013-.093-.04-.133-.053-.44-.227-.827-.453-1.16-.72a4.6 4.6 0 0 1-.6-.533c-.16-.174-.294-.334-.44-.494a6.2 6.2 0 0 1-1.014-1.92 5 5 0 0 1-.146-.573c-.08-.44-.12-.84-.12-1.227V17.76c0-.547.453-1 1-1s1 .453 1 1v5.786c0 .254.026.534.08.814.026.106.053.24.093.386.154.464.372.901.667 1.294.093.106.213.24.333.373s.227.213.347.307c.363.272.842.566 1.293.666.133.04.28.067.413.107.64.12 1.414.08 2-.107q.14-.06.32-.12c.4-.16.72-.36 1-.6.12-.093.214-.186.294-.266.786-.8 1.186-1.8 1.186-2.84V6.586c0-1.333-.8-2.133-2.133-2.133h-1.16c-.547 0-1-.453-1-1s.453-1 1-1h1.16c2.44 0 4.133 1.707 4.133 4.133v16.96a6 6 0 0 1-1.72 4.2c-.2.2-.36.347-.506.454-.4.36-.92.666-1.48.893a5.8 5.8 0 0 1-2.32.467z\",\n },\n {\n d: \"M27.267 29.56H10.32c-.547 0-1-.454-1-1 0-.547.453-1 1-1 .427 0 .853-.067 1.213-.187q.14-.06.32-.12c.4-.16.72-.36 1-.6.12-.094.214-.187.294-.267l8.586-8.573a1 1 0 0 1 .707-.294h4.827c2.44 0 4.133 1.707 4.133 4.134v3.773c0 2.44-1.707 4.133-4.133 4.133m-12.454-2H27.28c1.333 0 2.133-.8 2.133-2.134v-3.773c0-1.334-.8-2.134-2.133-2.134h-4.413z\",\n },\n {\n d: \"M13.907 28.04a1.006 1.006 0 0 1-.72-1.707 3.98 3.98 0 0 0 1.147-2.8V11.4c0-.267.106-.52.293-.707l3.4-3.4c1.666-1.667 4.2-1.667 5.853 0l2.667 2.667c1.72 1.72 1.72 4.133 0 5.853L14.6 27.746a1 1 0 0 1-.707.294zm2.427-16.227v11.373l8.8-8.8c.933-.933.933-2.093 0-3.026l-2.667-2.667c-.92-.92-2.107-.92-3.027 0L16.333 11.8zM10.32 25.787a2.26 2.26 0 0 1-2.253-2.254 2.26 2.26 0 0 1 2.253-2.253 2.26 2.26 0 0 1 2.253 2.253 2.26 2.26 0 0 1-2.253 2.254m0-2.507a.253.253 0 0 0-.253.253c0 .28.506.28.506 0a.253.253 0 0 0-.253-.253\",\n },\n ],\n filled: [\n {\n d: \"M31.333 22.28v4A3.335 3.335 0 0 1 28 29.613h-9.52c-1.187 0-1.774-1.426-.947-2.266l7.827-8c.253-.254.6-.4.946-.4H28a3.335 3.335 0 0 1 3.333 3.333m-8.453-3.333-3.28 3.266c-.84.84-2.28.254-2.28-.933V9.96c0-.36.147-.693.387-.947l1.226-1.226a3.33 3.33 0 0 1 4.72 0l2.827 2.826a3.31 3.31 0 0 1 0 4.72zM8 2.947c-.307 0-.573.04-.853.093l.173.627a1.93 1.93 0 0 0 1.347 1.36l1.293.346c.757.233 1.32.932 1.32 1.734 0 .776-.532 1.435-1.267 1.666l-1.32.36a1.9 1.9 0 0 0-1.36 1.36l-.346 1.28a1.715 1.715 0 0 1-1.694 1.294c-.226 0-.44-.054-.626-.12V24.28c0 .36.04.72.106 1.067.04.173.08.346.134.52.066.2.133.4.213.586v.04c.187.374.4.734.653 1.067.147.173.294.333.44.493s.307.294.48.427c.334.267.694.48 1.067.667.2.093.4.16.613.226.174.054.347.094.52.134.347.066.707.106 1.067.106.547 0 1.107-.08 1.627-.253.146-.053.293-.107.44-.173.466-.187.92-.454 1.32-.8.12-.094.253-.214.373-.334l.053-.053a5.34 5.34 0 0 0 1.52-3.72v-18c0-2-1.333-3.333-3.333-3.333zm2 23.333c-1.107 0-2-.893-2-2s.893-2 2-2 2 .893 2 2-.893 2-2 2\",\n },\n {\n d: \"M9.987 7.093a.415.415 0 0 1-.307.387l-1.307.36a3.22 3.22 0 0 0-2.293 2.293l-.347 1.28a.4.4 0 0 1-.413.32.4.4 0 0 1-.413-.32L4.56 10.12a3.25 3.25 0 0 0-2.293-2.28L.973 7.493c-.28-.08-.306-.32-.306-.413 0-.107.026-.347.306-.427l1.307-.346a3.27 3.27 0 0 0 2.28-2.294l.373-1.36a.43.43 0 0 1 .387-.266c.08 0 .307.026.387.24L6.08 4a3.29 3.29 0 0 0 2.293 2.293l1.334.374c.266.106.28.346.28.426\",\n },\n ],\n },\n};\n\n/** Props for {@link ToolsIcon}. See {@link BaseIconProps} for the shared shape. */\nexport type ToolsIconProps = BaseIconProps;\n\n/**\n * Tools icon. Renders at sizes 16, 24, or 32 px with outlined and filled variants.\n *\n * @example\n * ```tsx\n * <ToolsIcon size={24} filled />\n * ```\n */\nexport const ToolsIcon = React.forwardRef<SVGSVGElement, ToolsIconProps>((props, ref) => (\n <BaseIcon ref={ref} variants={VARIANTS} {...props} />\n));\n\nToolsIcon.displayName = \"ToolsIcon\";\n"],"names":[],"mappings":";;;;AAIA,MAAM,WAAyB;AAAA,EAC7B,IAAI;AAAA,IACF,UAAU;AAAA,MACR;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,IAEF,QAAQ;AAAA,MACN;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,EACF;AAAA,EAEF,IAAI;AAAA,IACF,UAAU;AAAA,MACR;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,IAEF,QAAQ;AAAA,MACN;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,EACF;AAAA,EAEF,IAAI;AAAA,IACF,UAAU;AAAA,MACR;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,IAEF,QAAQ;AAAA,MACN;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,EACF;AAEJ;AAaO,MAAM,YAAY,MAAM,WAA0C,CAAC,OAAO,QAC/E,oBAAC,UAAA,EAAS,KAAU,UAAU,UAAW,GAAG,OAAO,CACpD;AAED,UAAU,cAAc;"}
1
+ {"version":3,"file":"ToolsIcon.mjs","sources":["../../../src/components/Icons/ToolsIcon.tsx"],"sourcesContent":["import * as React from \"react\";\nimport { BaseIcon } from \"./BaseIcon\";\nimport type { BaseIconProps, IconVariants } from \"./types\";\n\nconst VARIANTS: IconVariants = {\n 16: {\n outlined: [\n {\n d: \"M3.033 7.246a.57.57 0 0 1-.566-.46l-.18-.78a1.03 1.03 0 0 0-.76-.76l-.787-.18A.57.57 0 0 1 .293 4.5c0-.28.187-.514.454-.567l.78-.18c.373-.087.673-.38.76-.76l.18-.787a.57.57 0 0 1 .566-.446c.28 0 .514.186.567.46l.18.78c.087.373.387.673.76.76l.787.18c.26.053.446.286.446.566s-.186.507-.453.567l-.787.18a1.03 1.03 0 0 0-.76.76l-.18.787a.57.57 0 0 1-.566.446zm-.713-2.74c.293.174.54.42.713.714.174-.294.42-.54.714-.714a2 2 0 0 1-.714-.713 2 2 0 0 1-.713.713\",\n },\n {\n d: \"M5.16 14.78q-.29 0-.6-.06c-.107-.027-.2-.047-.293-.074a2.4 2.4 0 0 1-.307-.113c-.02-.006-.047-.02-.067-.026a3.4 3.4 0 0 1-.58-.36 2.3 2.3 0 0 1-.3-.267c-.08-.087-.146-.167-.22-.247a3.1 3.1 0 0 1-.506-.96 3 3 0 0 1-.074-.287c-.04-.22-.06-.42-.06-.613V8.88c0-.273.227-.5.5-.5.274 0 .5.227.5.5v2.893c0 .127.014.267.04.407.014.053.027.12.047.193q.114.35.333.647l.167.187c.06.066.113.106.173.153.182.136.421.283.647.333.067.02.14.034.207.053.32.06.706.04 1-.053q.07-.03.16-.06c.2-.08.36-.18.5-.3q.088-.071.146-.133c.394-.4.594-.9.594-1.42V3.293c0-.666-.4-1.066-1.067-1.066h-.58a.504.504 0 0 1-.5-.5c0-.274.227-.5.5-.5h.58c1.22 0 2.067.853 2.067 2.066v8.48A3 3 0 0 1 7.053 14.1c-.2.18-.46.333-.74.447a2.9 2.9 0 0 1-1.16.233z\",\n },\n {\n d: \"M13.633 14.78H5.16a.504.504 0 0 1-.5-.5c0-.274.227-.5.5-.5.213 0 .427-.034.607-.094q.07-.03.16-.06c.2-.08.36-.18.5-.3q.088-.071.146-.133l4.294-4.287a.5.5 0 0 1 .353-.146h2.413c1.22 0 2.067.853 2.067 2.066v1.887c0 1.22-.853 2.067-2.067 2.067m-6.226-1h6.233c.667 0 1.067-.4 1.067-1.067v-1.887c0-.666-.4-1.066-1.067-1.066h-2.207z\",\n },\n {\n d: \"M6.953 14.02a.503.503 0 0 1-.36-.853c.374-.38.574-.88.574-1.4V5.7a.5.5 0 0 1 .146-.354l1.7-1.7c.834-.833 2.1-.833 2.927 0l1.333 1.334c.86.86.86 2.066 0 2.926L7.3 13.873c-.1.1-.227.147-.353.147zm1.214-8.114v5.687l4.4-4.4c.466-.467.466-1.047 0-1.513l-1.334-1.334c-.46-.46-1.053-.46-1.513 0L8.167 5.9zM5.16 12.893a1.13 1.13 0 0 1-1.127-1.126c0-.62.507-1.127 1.127-1.127s1.127.507 1.127 1.127a1.13 1.13 0 0 1-1.127 1.126m0-1.253a.127.127 0 0 0-.127.127c0 .14.254.14.254 0a.127.127 0 0 0-.127-.127\",\n },\n ],\n filled: [\n {\n d: \"M15.667 11.14v2c0 .92-.747 1.667-1.667 1.667H9.24a.665.665 0 0 1-.473-1.134l3.913-4c.127-.126.3-.2.473-.2H14c.92 0 1.667.747 1.667 1.667M11.44 9.473 9.8 11.107c-.42.42-1.14.126-1.14-.467V4.98c0-.18.073-.347.193-.473l.614-.614a1.666 1.666 0 0 1 2.36 0l1.413 1.414c.66.653.66 1.706 0 2.36zm-7.44-8c-.153 0-.287.02-.427.047l.087.313a.96.96 0 0 0 .673.68l.647.174c.378.116.66.465.66.866a.88.88 0 0 1-.633.834l-.66.18a.95.95 0 0 0-.68.68l-.174.64a.86.86 0 0 1-.846.646 1 1 0 0 1-.314-.06v5.667a2.8 2.8 0 0 0 .12.793q.049.151.107.294v.02q.138.28.327.533.11.129.22.247a3 3 0 0 0 .773.547c.1.046.2.08.307.113a4 4 0 0 0 .26.066q.261.053.533.054c.273 0 .553-.04.813-.127.074-.027.147-.053.22-.087a2.3 2.3 0 0 0 .66-.4c.06-.046.127-.106.187-.166L6.887 14c.466-.48.76-1.14.76-1.86v-9c0-1-.667-1.667-1.667-1.667zM5 13.14a1 1 0 1 1 0-2 1 1 0 1 1 0 2\",\n },\n {\n d: \"M4.993 3.547a.21.21 0 0 1-.153.193l-.653.18A1.61 1.61 0 0 0 3.04 5.067l-.173.64c-.04.146-.154.16-.207.16s-.167-.014-.207-.16L2.28 5.06a1.62 1.62 0 0 0-1.147-1.14l-.646-.173a.205.205 0 0 1-.154-.207c0-.053.014-.173.154-.213l.653-.174c.56-.16.987-.586 1.14-1.146l.187-.68a.21.21 0 0 1 .193-.134c.04 0 .153.014.193.12L3.04 2c.153.56.587.987 1.147 1.147l.666.186c.134.054.14.174.14.214\",\n },\n ],\n },\n 24: {\n outlined: [\n {\n d: \"M4.55 10.87a.85.85 0 0 1-.85-.69l-.27-1.17C3.3 8.45 2.85 8 2.29 7.87L1.11 7.6a.85.85 0 0 1-.67-.85c0-.42.28-.77.68-.85l1.17-.27c.56-.13 1.01-.57 1.14-1.14l.27-1.18c.08-.39.43-.67.85-.67s.77.28.85.69l.27 1.17c.13.56.58 1.01 1.14 1.14l1.18.27c.39.08.67.43.67.85s-.28.76-.68.85l-1.18.27c-.56.13-1.01.58-1.14 1.14l-.27 1.18c-.08.39-.43.67-.85.67zM3.48 6.76c.44.26.81.63 1.07 1.07.26-.44.63-.81 1.07-1.07-.44-.26-.81-.63-1.07-1.07-.26.44-.63.81-1.07 1.07\",\n },\n {\n d: \"M7.74 22.17q-.435 0-.9-.09c-.16-.04-.3-.07-.44-.11-.16-.05-.31-.1-.46-.17-.03-.01-.07-.03-.1-.04a5 5 0 0 1-.87-.54 3.5 3.5 0 0 1-.45-.4c-.12-.13-.22-.25-.33-.37a4.6 4.6 0 0 1-.76-1.44c-.05-.15-.08-.29-.11-.43-.06-.33-.09-.63-.09-.92v-4.34c0-.41.34-.75.75-.75s.75.34.75.75v4.34c0 .19.02.4.06.61.02.08.04.18.07.29.116.347.28.675.5.97.07.08.16.18.25.28s.17.16.26.23c.273.204.632.425.97.5.1.03.21.05.31.08.48.09 1.06.06 1.5-.08q.105-.045.24-.09c.3-.12.54-.27.75-.45.09-.07.16-.14.22-.2.59-.6.89-1.35.89-2.13V4.94c0-1-.6-1.6-1.6-1.6h-.87c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h.87c1.83 0 3.1 1.28 3.1 3.1v12.72c0 1.18-.46 2.3-1.29 3.15-.15.15-.27.26-.38.34-.3.27-.69.5-1.11.67a4.4 4.4 0 0 1-1.74.35z\",\n },\n {\n d: \"M20.45 22.17H7.74c-.41 0-.75-.34-.75-.75s.34-.75.75-.75c.32 0 .64-.05.91-.14q.105-.045.24-.09c.3-.12.54-.27.75-.45.09-.07.16-.14.22-.2l6.44-6.43a.75.75 0 0 1 .53-.22h3.62c1.83 0 3.1 1.28 3.1 3.1v2.83c0 1.83-1.28 3.1-3.1 3.1m-9.34-1.5h9.35c1 0 1.6-.6 1.6-1.6v-2.83c0-1-.6-1.6-1.6-1.6h-3.31z\",\n },\n {\n d: \"M10.43 21.03a.754.754 0 0 1-.54-1.28c.56-.57.86-1.32.86-2.1v-9.1c0-.2.08-.39.22-.53l2.55-2.55c1.25-1.25 3.15-1.25 4.39 0l2 2c1.29 1.29 1.29 3.1 0 4.39l-8.96 8.95c-.15.15-.34.22-.53.22zm1.82-12.17v8.53l6.6-6.6c.7-.7.7-1.57 0-2.27l-2-2c-.69-.69-1.58-.69-2.27 0l-2.33 2.33zM7.74 19.34c-.93 0-1.69-.76-1.69-1.69s.76-1.69 1.69-1.69 1.69.76 1.69 1.69-.76 1.69-1.69 1.69m0-1.88a.19.19 0 0 0-.19.19c0 .21.38.21.38 0a.19.19 0 0 0-.19-.19\",\n },\n ],\n filled: [\n {\n d: \"M23.5 16.71v3a2.5 2.5 0 0 1-2.5 2.5h-7.14c-.89 0-1.33-1.07-.71-1.7l5.87-6c.19-.19.45-.3.71-.3H21a2.5 2.5 0 0 1 2.5 2.5m-6.34-2.5-2.46 2.45c-.63.63-1.71.19-1.71-.7V7.47c0-.27.11-.52.29-.71l.92-.92c.98-.98 2.56-.98 3.54 0l2.12 2.12c.99.98.99 2.56 0 3.54zM6 2.21c-.23 0-.43.03-.64.07l.13.47c.13.5.52.88 1.01 1.02l.97.26c.568.175.99.699.99 1.3 0 .583-.399 1.076-.95 1.25l-.99.27c-.51.14-.88.51-1.02 1.02l-.26.96c-.16.59-.66.97-1.27.97-.17 0-.33-.04-.47-.09v8.5c0 .27.03.54.08.8.03.13.06.26.1.39.05.15.1.3.16.44v.03c.14.28.3.55.49.8.11.13.22.25.33.37s.23.22.36.32c.25.2.52.36.8.5.15.07.3.12.46.17.13.04.26.07.39.1.26.05.53.08.8.08.41 0 .83-.06 1.22-.19.11-.04.22-.08.33-.13.35-.14.69-.34.99-.6.09-.07.19-.16.28-.25l.04-.04c.7-.72 1.14-1.71 1.14-2.79V4.71c0-1.5-1-2.5-2.5-2.5zm1.5 17.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5\",\n },\n {\n d: \"M7.49 5.32c0 .07-.04.23-.23.29l-.98.27c-.85.23-1.49.87-1.72 1.72l-.26.96c-.06.22-.23.24-.31.24s-.25-.02-.31-.24l-.26-.97c-.23-.84-.88-1.48-1.72-1.71l-.97-.26C.52 5.56.5 5.38.5 5.31c0-.08.02-.26.23-.32l.98-.26c.84-.24 1.48-.88 1.71-1.72l.28-1.02c.07-.17.23-.2.29-.2s.23.02.29.18L4.56 3c.23.84.88 1.48 1.72 1.72l1 .28c.2.08.21.26.21.32\",\n },\n ],\n },\n 32: {\n outlined: [\n {\n d: \"M6.067 14.493c-.56 0-1.027-.373-1.134-.92l-.36-1.56a2.05 2.05 0 0 0-1.52-1.52l-1.573-.36C.96 10.026.587 9.56.587 9s.373-1.027.906-1.134l1.56-.36a2.03 2.03 0 0 0 1.52-1.52l.36-1.573c.107-.52.574-.893 1.134-.893s1.026.373 1.133.92L7.56 6a2.05 2.05 0 0 0 1.52 1.52l1.573.36c.52.106.893.573.893 1.133s-.373 1.013-.906 1.133l-1.573.36a2.05 2.05 0 0 0-1.52 1.52l-.36 1.574c-.107.52-.574.893-1.134.893zM4.64 9.013c.587.347 1.08.84 1.427 1.427a4.06 4.06 0 0 1 1.426-1.427 4.06 4.06 0 0 1-1.426-1.427A4.06 4.06 0 0 1 4.64 9.013\",\n },\n {\n d: \"M10.32 29.56q-.58 0-1.2-.12c-.213-.054-.4-.094-.587-.147a5 5 0 0 1-.613-.227c-.04-.013-.093-.04-.133-.053-.44-.227-.827-.453-1.16-.72a4.6 4.6 0 0 1-.6-.533c-.16-.174-.294-.334-.44-.494a6.2 6.2 0 0 1-1.014-1.92 5 5 0 0 1-.146-.573c-.08-.44-.12-.84-.12-1.227V17.76c0-.547.453-1 1-1s1 .453 1 1v5.786c0 .254.026.534.08.814.026.106.053.24.093.386.154.464.372.901.667 1.294.093.106.213.24.333.373s.227.213.347.307c.363.272.842.566 1.293.666.133.04.28.067.413.107.64.12 1.414.08 2-.107q.14-.06.32-.12c.4-.16.72-.36 1-.6.12-.093.214-.186.294-.266.786-.8 1.186-1.8 1.186-2.84V6.586c0-1.333-.8-2.133-2.133-2.133h-1.16c-.547 0-1-.453-1-1s.453-1 1-1h1.16c2.44 0 4.133 1.707 4.133 4.133v16.96a6 6 0 0 1-1.72 4.2c-.2.2-.36.347-.506.454-.4.36-.92.666-1.48.893a5.8 5.8 0 0 1-2.32.467z\",\n },\n {\n d: \"M27.267 29.56H10.32c-.547 0-1-.454-1-1 0-.547.453-1 1-1 .427 0 .853-.067 1.213-.187q.14-.06.32-.12c.4-.16.72-.36 1-.6.12-.094.214-.187.294-.267l8.586-8.573a1 1 0 0 1 .707-.294h4.827c2.44 0 4.133 1.707 4.133 4.134v3.773c0 2.44-1.707 4.133-4.133 4.133m-12.454-2H27.28c1.333 0 2.133-.8 2.133-2.134v-3.773c0-1.334-.8-2.134-2.133-2.134h-4.413z\",\n },\n {\n d: \"M13.907 28.04a1.006 1.006 0 0 1-.72-1.707 3.98 3.98 0 0 0 1.147-2.8V11.4c0-.267.106-.52.293-.707l3.4-3.4c1.666-1.667 4.2-1.667 5.853 0l2.667 2.667c1.72 1.72 1.72 4.133 0 5.853L14.6 27.746a1 1 0 0 1-.707.294zm2.427-16.227v11.373l8.8-8.8c.933-.933.933-2.093 0-3.026l-2.667-2.667c-.92-.92-2.107-.92-3.027 0L16.333 11.8zM10.32 25.787a2.26 2.26 0 0 1-2.253-2.254 2.26 2.26 0 0 1 2.253-2.253 2.26 2.26 0 0 1 2.253 2.253 2.26 2.26 0 0 1-2.253 2.254m0-2.507a.253.253 0 0 0-.253.253c0 .28.506.28.506 0a.253.253 0 0 0-.253-.253\",\n },\n ],\n filled: [\n {\n d: \"M31.333 22.28v4A3.335 3.335 0 0 1 28 29.613h-9.52c-1.187 0-1.774-1.426-.947-2.266l7.827-8c.253-.254.6-.4.946-.4H28a3.335 3.335 0 0 1 3.333 3.333m-8.453-3.333-3.28 3.266c-.84.84-2.28.254-2.28-.933V9.96c0-.36.147-.693.387-.947l1.226-1.226a3.33 3.33 0 0 1 4.72 0l2.827 2.826a3.31 3.31 0 0 1 0 4.72zM8 2.947c-.307 0-.573.04-.853.093l.173.627a1.93 1.93 0 0 0 1.347 1.36l1.293.346c.757.233 1.32.932 1.32 1.734 0 .776-.532 1.435-1.267 1.666l-1.32.36a1.9 1.9 0 0 0-1.36 1.36l-.346 1.28a1.715 1.715 0 0 1-1.694 1.294c-.226 0-.44-.054-.626-.12V24.28c0 .36.04.72.106 1.067.04.173.08.346.134.52.066.2.133.4.213.586v.04c.187.374.4.734.653 1.067.147.173.294.333.44.493s.307.294.48.427c.334.267.694.48 1.067.667.2.093.4.16.613.226.174.054.347.094.52.134.347.066.707.106 1.067.106.547 0 1.107-.08 1.627-.253.146-.053.293-.107.44-.173.466-.187.92-.454 1.32-.8.12-.094.253-.214.373-.334l.053-.053a5.34 5.34 0 0 0 1.52-3.72v-18c0-2-1.333-3.333-3.333-3.333zm2 23.333c-1.107 0-2-.893-2-2s.893-2 2-2 2 .893 2 2-.893 2-2 2\",\n },\n {\n d: \"M9.987 7.093a.415.415 0 0 1-.307.387l-1.307.36a3.22 3.22 0 0 0-2.293 2.293l-.347 1.28a.4.4 0 0 1-.413.32.4.4 0 0 1-.413-.32L4.56 10.12a3.25 3.25 0 0 0-2.293-2.28L.973 7.493c-.28-.08-.306-.32-.306-.413 0-.107.026-.347.306-.427l1.307-.346a3.27 3.27 0 0 0 2.28-2.294l.373-1.36a.43.43 0 0 1 .387-.266c.08 0 .307.026.387.24L6.08 4a3.29 3.29 0 0 0 2.293 2.293l1.334.374c.266.106.28.346.28.426\",\n },\n ],\n },\n};\n\n/** Props for {@link ToolsIcon}. See {@link BaseIconProps} for the shared shape. */\nexport type ToolsIconProps = BaseIconProps;\n\n/**\n * Tools icon. Renders at sizes 16, 24, or 32 px with outlined and filled variants.\n *\n * @example\n * ```tsx\n * <ToolsIcon size={24} filled />\n * ```\n */\nexport const ToolsIcon = React.forwardRef<SVGSVGElement, ToolsIconProps>((props, ref) => (\n <BaseIcon ref={ref} variants={VARIANTS} {...props} />\n));\n\nToolsIcon.displayName = \"ToolsIcon\";\n"],"names":[],"mappings":";;;;AAIA,MAAM,WAAyB;AAAA,EAC7B,IAAI;AAAA,IACF,UAAU;AAAA,MACR;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,IAEF,QAAQ;AAAA,MACN;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,EACF;AAAA,EAEF,IAAI;AAAA,IACF,UAAU;AAAA,MACR;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,IAEF,QAAQ;AAAA,MACN;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,EACF;AAAA,EAEF,IAAI;AAAA,IACF,UAAU;AAAA,MACR;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,IAEF,QAAQ;AAAA,MACN;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,EACF;AAEJ;AAaO,MAAM,YAAY,MAAM,WAA0C,CAAC,OAAO,QAC/E,oBAAC,UAAA,EAAS,KAAU,UAAU,UAAW,GAAG,OAAO,CACpD;AAED,UAAU,cAAc;"}