@mirohq/design-system-icons 0.2.2 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main.js +593 -18
- package/dist/main.js.map +1 -1
- package/dist/module.js +572 -19
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +45 -1
- package/package.json +1 -1
- package/react/arrow-down.tsx +1 -1
- package/react/arrow-fat-right.tsx +32 -0
- package/react/arrow-up.tsx +1 -1
- package/react/chat.tsx +32 -0
- package/react/circle-motion-x.tsx +33 -0
- package/react/circle.tsx +32 -0
- package/react/exclamation-point-circle.tsx +2 -2
- package/react/funnel.tsx +33 -0
- package/react/index.ts +22 -0
- package/react/information-mark-circle.tsx +1 -1
- package/react/line-diagonal.tsx +33 -0
- package/react/microphone-slash.tsx +33 -0
- package/react/microphone.tsx +33 -0
- package/react/parallelogram.tsx +32 -0
- package/react/pause-circle.tsx +33 -0
- package/react/play-circle.tsx +26 -0
- package/react/playback-speed-circle.tsx +31 -0
- package/react/rhombus.tsx +32 -0
- package/react/shapes.tsx +33 -0
- package/react/sliders-x.tsx +33 -0
- package/react/sliders-y.tsx +33 -0
- package/react/speaker-cross.tsx +33 -0
- package/react/speaker-high.tsx +33 -0
- package/react/square-rounded.tsx +32 -0
- package/react/square.tsx +32 -0
- package/react/stop-circle.tsx +25 -0
- package/react/triangle.tsx +32 -0
- package/react/wallet.tsx +1 -1
- package/svg/24/arrow-down.svg +1 -1
- package/svg/24/arrow-fat-right.svg +1 -0
- package/svg/24/arrow-up.svg +1 -1
- package/svg/24/chat.svg +1 -0
- package/svg/24/circle-motion-x.svg +1 -0
- package/svg/24/circle.svg +1 -0
- package/svg/24/exclamation-point-circle.svg +1 -1
- package/svg/24/funnel.svg +1 -0
- package/svg/24/information-mark-circle.svg +1 -1
- package/svg/24/line-diagonal.svg +1 -0
- package/svg/24/microphone-slash.svg +1 -0
- package/svg/24/microphone.svg +1 -0
- package/svg/24/parallelogram.svg +1 -0
- package/svg/24/pause-circle.svg +1 -0
- package/svg/24/play-circle.svg +1 -0
- package/svg/24/playback-speed-circle.svg +1 -0
- package/svg/24/rhombus.svg +1 -0
- package/svg/24/shapes.svg +1 -0
- package/svg/24/sliders-x.svg +1 -0
- package/svg/24/sliders-y.svg +1 -0
- package/svg/24/speaker-cross.svg +1 -0
- package/svg/24/speaker-high.svg +1 -0
- package/svg/24/square-rounded.svg +1 -0
- package/svg/24/square.svg +1 -0
- package/svg/24/stop-circle.svg +1 -0
- package/svg/24/triangle.svg +1 -0
- package/svg/24/wallet.svg +1 -1
- package/svg/meta.json +143 -0
package/dist/module.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"module.js","sources":["../src/icon.ts","../react/arrow-box-out.tsx","../react/arrow-down-left.tsx","../react/arrow-down-right.tsx","../react/arrow-down.tsx","../react/arrow-left.tsx","../react/arrow-right.tsx","../react/arrow-up-left.tsx","../react/arrow-up-right.tsx","../react/arrow-up.tsx","../react/bar-three.tsx","../react/check-mark.tsx","../react/chevron-down.tsx","../react/chevron-left.tsx","../react/chevron-right.tsx","../react/chevron-up.tsx","../react/cog.tsx","../react/cross-circle.tsx","../react/cross.tsx","../react/envelope.tsx","../react/exclamation-point-circle.tsx","../react/globe.tsx","../react/house.tsx","../react/information-mark-circle.tsx","../react/link.tsx","../react/lock-closed.tsx","../react/lock-open.tsx","../react/magnifying-glass.tsx","../react/minus.tsx","../react/placeholder.tsx","../react/plug.tsx","../react/plus.tsx","../react/question-mark-circle.tsx","../react/social-facebook.tsx","../react/social-instagram.tsx","../react/social-linkedin.tsx","../react/social-twitter.tsx","../react/social-youtube.tsx","../react/user-add.tsx","../react/user.tsx","../react/users.tsx","../react/wallet.tsx"],"sourcesContent":["import { styled, theme } from '@mirohq/design-system-stitches'\nimport { Primitive } from '@mirohq/design-system-primitive'\nimport type { ComponentPropsWithRef } from 'react'\nimport { mapKeysToVariants } from '@mirohq/design-system-utils'\n\nexport const StyledIcon = styled(Primitive.svg, {\n display: 'inline-flex',\n verticalAlign: 'text-bottom',\n forcedColorAdjust: 'preserve-parent-color',\n variants: {\n size: {\n small: {\n width: '$icon-200',\n },\n medium: {\n width: '$icon-300',\n },\n large: {\n width: '$icon-400',\n },\n },\n color: mapKeysToVariants(theme.colors, 'color'),\n },\n})\n\nexport type StyledIconProps = ComponentPropsWithRef<typeof StyledIcon>\n\nexport interface IconProps extends StyledIconProps {\n /**\n * The icon size.\n */\n size?: StyledIconProps['size']\n\n /**\n * The icon color.\n */\n color?: StyledIconProps['color']\n\n // `fr` attr is not available on @types/react-dom 16.x\n fr?: string | number | undefined\n}\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconArrowBoxOut: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M17 14v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V8a1 1 0 0 1 1-1h4.5M20 4l-9 9m2.002-9h7v7'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconArrowDownLeft: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M5 19h9m-9 0v-9m0 9L19 5'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconArrowDownRight: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M19 19v-9m0 9h-9m9 0L5 5'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconArrowDown: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M12 20V3m7 10.59-7 7-7-7'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconArrowLeft: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M21 12H4m6.41-7-7 7 7 7'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconArrowRight: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M20 12H3m10.59-7 7 7-7 7'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconArrowUpLeft: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M5 5v9m0-9h9M5 5l14 14'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconArrowUpRight: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M19 5h-9m9 0v9m0-9L5 19'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconArrowUp: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M12 4v17M5 10.41l7-7 7 7'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconBarThree: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M21 5H3m18 7H3m18 7H3'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconCheckMark: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='m5 11 5 5 9-9'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconChevronDown: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='m6 9.5 6 6 6-6'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconChevronLeft: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='m14.5 6-6 6 6 6'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconChevronRight: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='m9.5 6 6 6-6 6'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconChevronUp: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='m6 14.5 6-6 6 6'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconCog: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <circle cx={12} cy={12} r={1} stroke='currentColor' strokeWidth={2} />,\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeLinejoin='round'\n strokeWidth={2}\n d='M13.544 3h-3l-1 3-1.446.835L5 6.2 3.5 8.799l2.098 2.366v1.67L3.5 15.2 5 17.799l3.098-.634L9.544 18l1 3h3l1-3 1.446-.835 3.098.634 1.5-2.598-2.098-2.366v-1.67l2.099-2.366-1.5-2.598-3.099.634L14.544 6l-1-3Z'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconCrossCircle: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='m9 9 6 6m0-6-6 6m12-3a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconCross: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='m6 6 12 12m0-12L6 18'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconEnvelope: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='m7 9 3.618 3.459a2 2 0 0 0 2.764 0L17 9M4 19h16a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1Z'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconExclamationPointCircle: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <circle cx={12} cy={15.5} r={1} fill='currentColor' />,\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M12 8v4m9 0a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-8.5 3.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Z'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconGlobe: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M11.663 3C9.495 4.62 8 8.042 8 12s1.495 7.38 3.663 9m.674-18C14.505 4.62 16 8.042 16 12s-1.495 7.38-3.663 9M4 9h16M4 15h16m1-3a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconHouse: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n fill='currentColor'\n d='m12 4.4.707-.707L12 2.986l-.707.707L12 4.4Zm-9.707 8.293a1 1 0 1 0 1.414 1.414l-1.414-1.414Zm18 1.414a1 1 0 0 0 1.414-1.414l-1.414 1.414Zm-9-10.414-9 9 1.414 1.414 9-9-1.414-1.414Zm0 1.414 9 9 1.414-1.414-9-9-1.414 1.414ZM7 19v-8.5H5V19h2Zm0 0H5a2 2 0 0 0 2 2v-2Zm10 0H7v2h10v-2Zm0 0v2a2 2 0 0 0 2-2h-2Zm0-8.5V19h2v-8.5h-2Z'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconInformationMarkCircle: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <circle cx={12} cy={8.5} r={1} fill='currentColor' />,\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M12 12v4m9-4a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-8.5-3.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Z'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconLink: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='m7.757 11.293-3.182 3.182a3.5 3.5 0 0 0 4.95 4.95l3.182-3.182M10.939 8.11l3.535-3.535a3.5 3.5 0 1 1 4.95 4.95L15.89 13.06m-7.425 2.475 7.071-7.071'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconLockClosed: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <circle cx={12} cy={16} r={1} fill='currentColor' />,\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M16.5 11V5a2 2 0 0 0-2-2h-5a2 2 0 0 0-2 2v6M7 21h10a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2Zm6-5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconLockOpen: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <circle cx={12} cy={16} r={1} fill='currentColor' />,\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M16.5 11V5a2 2 0 0 0-2-2h-5a2 2 0 0 0-2 2v1.5M7 21h10a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2Zm6-5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconMagnifyingGlass: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='m20 20-5.5-5.5M16 10a6 6 0 1 1-12 0 6 6 0 0 1 12 0Z'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconMinus: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M5 12h14'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconPlaceholder: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='m3 3 18 18m0-18L3 21m18-9a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconPlug: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='m12.385 5.9 3.535-3.536m2.122 9.192 3.535-3.535M3.192 20.749l4.95-4.95m2.122-12.02 9.899 9.899-3.536 3.535a5 5 0 0 1-7.07 0l-2.83-2.828a5 5 0 0 1 0-7.071l3.537-3.536Z'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconPlus: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M5 12h14m-7-7v14'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconQuestionMarkCircle: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M9.17 9a3.001 3.001 0 1 1 3.812 3.836c-.522.18-.982.612-.982 1.164v.25m0 2.65v.1m9-5a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconSocialFacebook: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n fill='currentColor'\n d='M22 12.061C22 6.505 17.523 2 12 2S2 6.505 2 12.061c0 5.022 3.657 9.184 8.438 9.939v-7.03h-2.54v-2.91h2.54V9.845c0-2.522 1.492-3.915 3.777-3.915 1.094 0 2.238.197 2.238.197v2.476h-1.26c-1.243 0-1.63.775-1.63 1.57v1.888h2.773l-.443 2.908h-2.33V22c4.78-.755 8.437-4.917 8.437-9.939Z'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconSocialInstagram: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n fill='currentColor'\n d='M8.667 12a3.333 3.333 0 1 0 6.666 0 3.333 3.333 0 0 0-6.666 0Z'\n />,\n <path\n fill='currentColor'\n fillRule='evenodd'\n d='M12 2c-2.716 0-3.056.012-4.123.06-1.064.049-1.791.218-2.427.465a4.902 4.902 0 0 0-1.772 1.153A4.902 4.902 0 0 0 2.525 5.45c-.247.636-.416 1.363-.465 2.427C2.011 8.944 2 9.284 2 12s.011 3.056.06 4.123c.049 1.064.218 1.791.465 2.427a4.902 4.902 0 0 0 1.153 1.772 4.901 4.901 0 0 0 1.772 1.153c.636.247 1.363.416 2.427.465 1.067.048 1.407.06 4.123.06s3.056-.012 4.123-.06c1.064-.049 1.791-.218 2.427-.465a4.902 4.902 0 0 0 1.772-1.153 4.902 4.902 0 0 0 1.153-1.772c.247-.636.416-1.363.465-2.427.048-1.067.06-1.407.06-4.123s-.012-3.056-.06-4.123c-.049-1.064-.218-1.791-.465-2.427a4.901 4.901 0 0 0-1.153-1.772 4.902 4.902 0 0 0-1.772-1.153c-.636-.247-1.363-.416-2.427-.465C15.056 2.012 14.716 2 12 2Zm6.538 4.662a1.2 1.2 0 1 1-2.4 0 1.2 1.2 0 0 1 2.4 0ZM6.865 12a5.135 5.135 0 1 1 10.27 0 5.135 5.135 0 0 1-10.27 0Z'\n clipRule='evenodd'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconSocialLinkedin: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n fill='currentColor'\n d='M20.52 2c.816 0 1.48.646 1.48 1.442v17.115c0 .796-.664 1.443-1.48 1.443H3.475C2.661 22 2 21.353 2 20.557V3.442C2 2.646 2.661 2 3.475 2h17.046Zm-1.477 17.042v-5.234c0-2.57-.555-4.547-3.558-4.547-1.444 0-2.412.791-2.807 1.542h-.04V9.498H9.793v9.544h2.963v-4.72c0-1.246.235-2.452 1.779-2.452 1.522 0 1.541 1.424 1.541 2.53v4.642h2.966ZM7.933 9.498h-2.97v9.544h2.97V9.498ZM6.449 4.753a1.72 1.72 0 1 0-.003 3.44 1.72 1.72 0 0 0 .003-3.44Z'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconSocialTwitter: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n fill='currentColor'\n d='M7.919 21C16.22 21 20.76 14.074 20.76 8.068c0-.196 0-.392-.013-.587A9.22 9.22 0 0 0 23 5.128a8.963 8.963 0 0 1-2.593.715 4.556 4.556 0 0 0 1.985-2.514 9.01 9.01 0 0 1-2.866 1.104A4.505 4.505 0 0 0 16.235 3c-2.479 0-4.518 2.054-4.518 4.55 0 .345.039.69.117 1.028A12.791 12.791 0 0 1 2.53 3.829c-1.19 2.065-.574 4.741 1.4 6.067a4.456 4.456 0 0 1-2.049-.569v.058c0 2.155 1.523 4.029 3.621 4.455a4.477 4.477 0 0 1-2.038.078 4.532 4.532 0 0 0 4.217 3.157A9.019 9.019 0 0 1 1 18.958a12.716 12.716 0 0 0 6.919 2.039'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconSocialYoutube: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n fill='currentColor'\n d='M23.02 6.155c-.265-1.045-1.044-1.868-2.034-2.147C19.192 3.5 12 3.5 12 3.5s-7.192 0-8.986.508C2.024 4.287 1.245 5.11.98 6.155.5 8.049.5 12 .5 12s0 3.952.48 5.845c.265 1.045 1.044 1.868 2.034 2.148C4.808 20.5 12 20.5 12 20.5s7.192 0 8.986-.507c.99-.28 1.77-1.103 2.034-2.148.48-1.893.48-5.845.48-5.845s0-3.951-.48-5.845ZM9.7 15.643V8.357L15.675 12 9.7 15.643Z'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconUserAdd: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M2 11h3m0 0h3m-3 0V8m0 3v3m3 6 .443-2.658A4 4 0 0 1 12.389 14h5.223a4 4 0 0 1 3.945 3.342L22 20M18 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconUser: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='m4 20 .443-2.658A4 4 0 0 1 8.389 14h7.223a4 4 0 0 1 3.945 3.342L20 20M16 7a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconUsers: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='m1 20 .443-2.658A4 4 0 0 1 5.389 14h5.222a4 4 0 0 1 3.946 3.342L15 20m3-4h1.852a3 3 0 0 1 2.977 2.628L23 20M11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm9 2.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Z'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconWallet: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='square'\n strokeWidth={2}\n d='M20 16V4H6a2 2 0 0 0-2 2v11m14-1H6a2 2 0 1 0 0 4h12v-4Z'\n />,\n <circle cx={15.5} cy={10} r={1.5} fill='currentColor' />\n )\n)\n"],"names":["forwardRef"],"mappings":";;;;;AAKa,MAAA,UAAA,GAAa,MAAO,CAAA,SAAA,CAAU,GAAK,EAAA;AAAA,EAC9C,OAAS,EAAA,aAAA;AAAA,EACT,aAAe,EAAA,aAAA;AAAA,EACf,iBAAmB,EAAA,uBAAA;AAAA,EACnB,QAAU,EAAA;AAAA,IACR,IAAM,EAAA;AAAA,MACJ,KAAO,EAAA;AAAA,QACL,KAAO,EAAA,WAAA;AAAA,OACT;AAAA,MACA,MAAQ,EAAA;AAAA,QACN,KAAO,EAAA,WAAA;AAAA,OACT;AAAA,MACA,KAAO,EAAA;AAAA,QACL,KAAO,EAAA,WAAA;AAAA,OACT;AAAA,KACF;AAAA,IACA,KAAO,EAAA,iBAAA,CAAkB,KAAM,CAAA,MAAA,EAAQ,OAAO,CAAA;AAAA,GAChD;AACF,CAAC,CAAA;;ACjBM,MAAM,eAET,GAAA,UAAA;AAAA,EAAW,CAAC,EAAE,IAAA,GAAO,QAAa,EAAA,GAAA,KAAA,IAASA,WAC7C,KAAA,aAAA;AAAA,IACE,UAAA;AAAA,IACA;AAAA,MACE,GAAG,KAAA;AAAA,MACH,IAAA;AAAA,MACA,OAAS,EAAA,WAAA;AAAA,MACT,IAAM,EAAA,MAAA;AAAA,MACN,GAAKA,EAAAA,WAAAA;AAAA,KACP;AAAA,oBACC,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA;AAAA,MACC,MAAO,EAAA,cAAA;AAAA,MACP,aAAc,EAAA,OAAA;AAAA,MACd,WAAa,EAAA,CAAA;AAAA,MACb,CAAE,EAAA,kFAAA;AAAA,KACJ,CAAA;AAAA,GACF;AACF;;ACnBO,MAAM,iBAET,GAAA,UAAA;AAAA,EAAW,CAAC,EAAE,IAAA,GAAO,QAAa,EAAA,GAAA,KAAA,IAASA,WAC7C,KAAA,aAAA;AAAA,IACE,UAAA;AAAA,IACA;AAAA,MACE,GAAG,KAAA;AAAA,MACH,IAAA;AAAA,MACA,OAAS,EAAA,WAAA;AAAA,MACT,IAAM,EAAA,MAAA;AAAA,MACN,GAAKA,EAAAA,WAAAA;AAAA,KACP;AAAA,oBACC,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA;AAAA,MACC,MAAO,EAAA,cAAA;AAAA,MACP,aAAc,EAAA,OAAA;AAAA,MACd,WAAa,EAAA,CAAA;AAAA,MACb,CAAE,EAAA,0BAAA;AAAA,KACJ,CAAA;AAAA,GACF;AACF;;ACnBO,MAAM,kBAET,GAAA,UAAA;AAAA,EAAW,CAAC,EAAE,IAAA,GAAO,QAAa,EAAA,GAAA,KAAA,IAASA,WAC7C,KAAA,aAAA;AAAA,IACE,UAAA;AAAA,IACA;AAAA,MACE,GAAG,KAAA;AAAA,MACH,IAAA;AAAA,MACA,OAAS,EAAA,WAAA;AAAA,MACT,IAAM,EAAA,MAAA;AAAA,MACN,GAAKA,EAAAA,WAAAA;AAAA,KACP;AAAA,oBACC,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA;AAAA,MACC,MAAO,EAAA,cAAA;AAAA,MACP,aAAc,EAAA,OAAA;AAAA,MACd,WAAa,EAAA,CAAA;AAAA,MACb,CAAE,EAAA,0BAAA;AAAA,KACJ,CAAA;AAAA,GACF;AACF;;ACnBO,MAAM,aAET,GAAA,UAAA;AAAA,EAAW,CAAC,EAAE,IAAA,GAAO,QAAa,EAAA,GAAA,KAAA,IAASA,WAC7C,KAAA,aAAA;AAAA,IACE,UAAA;AAAA,IACA;AAAA,MACE,GAAG,KAAA;AAAA,MACH,IAAA;AAAA,MACA,OAAS,EAAA,WAAA;AAAA,MACT,IAAM,EAAA,MAAA;AAAA,MACN,GAAKA,EAAAA,WAAAA;AAAA,KACP;AAAA,oBACC,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA;AAAA,MACC,MAAO,EAAA,cAAA;AAAA,MACP,aAAc,EAAA,OAAA;AAAA,MACd,WAAa,EAAA,CAAA;AAAA,MACb,CAAE,EAAA,0BAAA;AAAA,KACJ,CAAA;AAAA,GACF;AACF;;ACnBO,MAAM,aAET,GAAA,UAAA;AAAA,EAAW,CAAC,EAAE,IAAA,GAAO,QAAa,EAAA,GAAA,KAAA,IAASA,WAC7C,KAAA,aAAA;AAAA,IACE,UAAA;AAAA,IACA;AAAA,MACE,GAAG,KAAA;AAAA,MACH,IAAA;AAAA,MACA,OAAS,EAAA,WAAA;AAAA,MACT,IAAM,EAAA,MAAA;AAAA,MACN,GAAKA,EAAAA,WAAAA;AAAA,KACP;AAAA,oBACC,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA;AAAA,MACC,MAAO,EAAA,cAAA;AAAA,MACP,aAAc,EAAA,OAAA;AAAA,MACd,WAAa,EAAA,CAAA;AAAA,MACb,CAAE,EAAA,yBAAA;AAAA,KACJ,CAAA;AAAA,GACF;AACF;;ACnBO,MAAM,cAET,GAAA,UAAA;AAAA,EAAW,CAAC,EAAE,IAAA,GAAO,QAAa,EAAA,GAAA,KAAA,IAASA,WAC7C,KAAA,aAAA;AAAA,IACE,UAAA;AAAA,IACA;AAAA,MACE,GAAG,KAAA;AAAA,MACH,IAAA;AAAA,MACA,OAAS,EAAA,WAAA;AAAA,MACT,IAAM,EAAA,MAAA;AAAA,MACN,GAAKA,EAAAA,WAAAA;AAAA,KACP;AAAA,oBACC,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA;AAAA,MACC,MAAO,EAAA,cAAA;AAAA,MACP,aAAc,EAAA,OAAA;AAAA,MACd,WAAa,EAAA,CAAA;AAAA,MACb,CAAE,EAAA,0BAAA;AAAA,KACJ,CAAA;AAAA,GACF;AACF;;ACnBO,MAAM,eAET,GAAA,UAAA;AAAA,EAAW,CAAC,EAAE,IAAA,GAAO,QAAa,EAAA,GAAA,KAAA,IAASA,WAC7C,KAAA,aAAA;AAAA,IACE,UAAA;AAAA,IACA;AAAA,MACE,GAAG,KAAA;AAAA,MACH,IAAA;AAAA,MACA,OAAS,EAAA,WAAA;AAAA,MACT,IAAM,EAAA,MAAA;AAAA,MACN,GAAKA,EAAAA,WAAAA;AAAA,KACP;AAAA,oBACC,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA;AAAA,MACC,MAAO,EAAA,cAAA;AAAA,MACP,aAAc,EAAA,OAAA;AAAA,MACd,WAAa,EAAA,CAAA;AAAA,MACb,CAAE,EAAA,wBAAA;AAAA,KACJ,CAAA;AAAA,GACF;AACF;;ACnBO,MAAM,gBAET,GAAA,UAAA;AAAA,EAAW,CAAC,EAAE,IAAA,GAAO,QAAa,EAAA,GAAA,KAAA,IAASA,WAC7C,KAAA,aAAA;AAAA,IACE,UAAA;AAAA,IACA;AAAA,MACE,GAAG,KAAA;AAAA,MACH,IAAA;AAAA,MACA,OAAS,EAAA,WAAA;AAAA,MACT,IAAM,EAAA,MAAA;AAAA,MACN,GAAKA,EAAAA,WAAAA;AAAA,KACP;AAAA,oBACC,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA;AAAA,MACC,MAAO,EAAA,cAAA;AAAA,MACP,aAAc,EAAA,OAAA;AAAA,MACd,WAAa,EAAA,CAAA;AAAA,MACb,CAAE,EAAA,yBAAA;AAAA,KACJ,CAAA;AAAA,GACF;AACF;;ACnBO,MAAM,WAET,GAAA,UAAA;AAAA,EAAW,CAAC,EAAE,IAAA,GAAO,QAAa,EAAA,GAAA,KAAA,IAASA,WAC7C,KAAA,aAAA;AAAA,IACE,UAAA;AAAA,IACA;AAAA,MACE,GAAG,KAAA;AAAA,MACH,IAAA;AAAA,MACA,OAAS,EAAA,WAAA;AAAA,MACT,IAAM,EAAA,MAAA;AAAA,MACN,GAAKA,EAAAA,WAAAA;AAAA,KACP;AAAA,oBACC,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA;AAAA,MACC,MAAO,EAAA,cAAA;AAAA,MACP,aAAc,EAAA,OAAA;AAAA,MACd,WAAa,EAAA,CAAA;AAAA,MACb,CAAE,EAAA,0BAAA;AAAA,KACJ,CAAA;AAAA,GACF;AACF;;ACnBO,MAAM,YAET,GAAA,UAAA;AAAA,EAAW,CAAC,EAAE,IAAA,GAAO,QAAa,EAAA,GAAA,KAAA,IAASA,WAC7C,KAAA,aAAA;AAAA,IACE,UAAA;AAAA,IACA;AAAA,MACE,GAAG,KAAA;AAAA,MACH,IAAA;AAAA,MACA,OAAS,EAAA,WAAA;AAAA,MACT,IAAM,EAAA,MAAA;AAAA,MACN,GAAKA,EAAAA,WAAAA;AAAA,KACP;AAAA,oBACC,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA;AAAA,MACC,MAAO,EAAA,cAAA;AAAA,MACP,aAAc,EAAA,OAAA;AAAA,MACd,WAAa,EAAA,CAAA;AAAA,MACb,CAAE,EAAA,uBAAA;AAAA,KACJ,CAAA;AAAA,GACF;AACF;;ACnBO,MAAM,aAET,GAAA,UAAA;AAAA,EAAW,CAAC,EAAE,IAAA,GAAO,QAAa,EAAA,GAAA,KAAA,IAASA,WAC7C,KAAA,aAAA;AAAA,IACE,UAAA;AAAA,IACA;AAAA,MACE,GAAG,KAAA;AAAA,MACH,IAAA;AAAA,MACA,OAAS,EAAA,WAAA;AAAA,MACT,IAAM,EAAA,MAAA;AAAA,MACN,GAAKA,EAAAA,WAAAA;AAAA,KACP;AAAA,oBACC,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA;AAAA,MACC,MAAO,EAAA,cAAA;AAAA,MACP,aAAc,EAAA,OAAA;AAAA,MACd,WAAa,EAAA,CAAA;AAAA,MACb,CAAE,EAAA,eAAA;AAAA,KACJ,CAAA;AAAA,GACF;AACF;;ACnBO,MAAM,eAET,GAAA,UAAA;AAAA,EAAW,CAAC,EAAE,IAAA,GAAO,QAAa,EAAA,GAAA,KAAA,IAASA,WAC7C,KAAA,aAAA;AAAA,IACE,UAAA;AAAA,IACA;AAAA,MACE,GAAG,KAAA;AAAA,MACH,IAAA;AAAA,MACA,OAAS,EAAA,WAAA;AAAA,MACT,IAAM,EAAA,MAAA;AAAA,MACN,GAAKA,EAAAA,WAAAA;AAAA,KACP;AAAA,oBACC,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA;AAAA,MACC,MAAO,EAAA,cAAA;AAAA,MACP,aAAc,EAAA,OAAA;AAAA,MACd,WAAa,EAAA,CAAA;AAAA,MACb,CAAE,EAAA,gBAAA;AAAA,KACJ,CAAA;AAAA,GACF;AACF;;ACnBO,MAAM,eAET,GAAA,UAAA;AAAA,EAAW,CAAC,EAAE,IAAA,GAAO,QAAa,EAAA,GAAA,KAAA,IAASA,WAC7C,KAAA,aAAA;AAAA,IACE,UAAA;AAAA,IACA;AAAA,MACE,GAAG,KAAA;AAAA,MACH,IAAA;AAAA,MACA,OAAS,EAAA,WAAA;AAAA,MACT,IAAM,EAAA,MAAA;AAAA,MACN,GAAKA,EAAAA,WAAAA;AAAA,KACP;AAAA,oBACC,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA;AAAA,MACC,MAAO,EAAA,cAAA;AAAA,MACP,aAAc,EAAA,OAAA;AAAA,MACd,WAAa,EAAA,CAAA;AAAA,MACb,CAAE,EAAA,iBAAA;AAAA,KACJ,CAAA;AAAA,GACF;AACF;;ACnBO,MAAM,gBAET,GAAA,UAAA;AAAA,EAAW,CAAC,EAAE,IAAA,GAAO,QAAa,EAAA,GAAA,KAAA,IAASA,WAC7C,KAAA,aAAA;AAAA,IACE,UAAA;AAAA,IACA;AAAA,MACE,GAAG,KAAA;AAAA,MACH,IAAA;AAAA,MACA,OAAS,EAAA,WAAA;AAAA,MACT,IAAM,EAAA,MAAA;AAAA,MACN,GAAKA,EAAAA,WAAAA;AAAA,KACP;AAAA,oBACC,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA;AAAA,MACC,MAAO,EAAA,cAAA;AAAA,MACP,aAAc,EAAA,OAAA;AAAA,MACd,WAAa,EAAA,CAAA;AAAA,MACb,CAAE,EAAA,gBAAA;AAAA,KACJ,CAAA;AAAA,GACF;AACF;;ACnBO,MAAM,aAET,GAAA,UAAA;AAAA,EAAW,CAAC,EAAE,IAAA,GAAO,QAAa,EAAA,GAAA,KAAA,IAASA,WAC7C,KAAA,aAAA;AAAA,IACE,UAAA;AAAA,IACA;AAAA,MACE,GAAG,KAAA;AAAA,MACH,IAAA;AAAA,MACA,OAAS,EAAA,WAAA;AAAA,MACT,IAAM,EAAA,MAAA;AAAA,MACN,GAAKA,EAAAA,WAAAA;AAAA,KACP;AAAA,oBACC,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA;AAAA,MACC,MAAO,EAAA,cAAA;AAAA,MACP,aAAc,EAAA,OAAA;AAAA,MACd,WAAa,EAAA,CAAA;AAAA,MACb,CAAE,EAAA,iBAAA;AAAA,KACJ,CAAA;AAAA,GACF;AACF;;ACnBO,MAAM,OAET,GAAA,UAAA;AAAA,EAAW,CAAC,EAAE,IAAA,GAAO,QAAa,EAAA,GAAA,KAAA,IAASA,WAC7C,KAAA,aAAA;AAAA,IACE,UAAA;AAAA,IACA;AAAA,MACE,GAAG,KAAA;AAAA,MACH,IAAA;AAAA,MACA,OAAS,EAAA,WAAA;AAAA,MACT,IAAM,EAAA,MAAA;AAAA,MACN,GAAKA,EAAAA,WAAAA;AAAA,KACP;AAAA,oBACC,KAAA,CAAA,aAAA,CAAA,QAAA,EAAA;AAAA,MAAO,EAAI,EAAA,EAAA;AAAA,MAAI,EAAI,EAAA,EAAA;AAAA,MAAI,CAAG,EAAA,CAAA;AAAA,MAAG,MAAO,EAAA,cAAA;AAAA,MAAe,WAAa,EAAA,CAAA;AAAA,KAAG,CAAA;AAAA,oBACnE,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA;AAAA,MACC,MAAO,EAAA,cAAA;AAAA,MACP,aAAc,EAAA,OAAA;AAAA,MACd,cAAe,EAAA,OAAA;AAAA,MACf,WAAa,EAAA,CAAA;AAAA,MACb,CAAE,EAAA,8MAAA;AAAA,KACJ,CAAA;AAAA,GACF;AACF;;ACrBO,MAAM,eAET,GAAA,UAAA;AAAA,EAAW,CAAC,EAAE,IAAA,GAAO,QAAa,EAAA,GAAA,KAAA,IAASA,WAC7C,KAAA,aAAA;AAAA,IACE,UAAA;AAAA,IACA;AAAA,MACE,GAAG,KAAA;AAAA,MACH,IAAA;AAAA,MACA,OAAS,EAAA,WAAA;AAAA,MACT,IAAM,EAAA,MAAA;AAAA,MACN,GAAKA,EAAAA,WAAAA;AAAA,KACP;AAAA,oBACC,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA;AAAA,MACC,MAAO,EAAA,cAAA;AAAA,MACP,aAAc,EAAA,OAAA;AAAA,MACd,WAAa,EAAA,CAAA;AAAA,MACb,CAAE,EAAA,sDAAA;AAAA,KACJ,CAAA;AAAA,GACF;AACF;;ACnBO,MAAM,SAET,GAAA,UAAA;AAAA,EAAW,CAAC,EAAE,IAAA,GAAO,QAAa,EAAA,GAAA,KAAA,IAASA,WAC7C,KAAA,aAAA;AAAA,IACE,UAAA;AAAA,IACA;AAAA,MACE,GAAG,KAAA;AAAA,MACH,IAAA;AAAA,MACA,OAAS,EAAA,WAAA;AAAA,MACT,IAAM,EAAA,MAAA;AAAA,MACN,GAAKA,EAAAA,WAAAA;AAAA,KACP;AAAA,oBACC,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA;AAAA,MACC,MAAO,EAAA,cAAA;AAAA,MACP,aAAc,EAAA,OAAA;AAAA,MACd,WAAa,EAAA,CAAA;AAAA,MACb,CAAE,EAAA,sBAAA;AAAA,KACJ,CAAA;AAAA,GACF;AACF;;ACnBO,MAAM,YAET,GAAA,UAAA;AAAA,EAAW,CAAC,EAAE,IAAA,GAAO,QAAa,EAAA,GAAA,KAAA,IAASA,WAC7C,KAAA,aAAA;AAAA,IACE,UAAA;AAAA,IACA;AAAA,MACE,GAAG,KAAA;AAAA,MACH,IAAA;AAAA,MACA,OAAS,EAAA,WAAA;AAAA,MACT,IAAM,EAAA,MAAA;AAAA,MACN,GAAKA,EAAAA,WAAAA;AAAA,KACP;AAAA,oBACC,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA;AAAA,MACC,MAAO,EAAA,cAAA;AAAA,MACP,aAAc,EAAA,OAAA;AAAA,MACd,WAAa,EAAA,CAAA;AAAA,MACb,CAAE,EAAA,iHAAA;AAAA,KACJ,CAAA;AAAA,GACF;AACF;;ACnBO,MAAM,0BAET,GAAA,UAAA;AAAA,EAAW,CAAC,EAAE,IAAA,GAAO,QAAa,EAAA,GAAA,KAAA,IAASA,WAC7C,KAAA,aAAA;AAAA,IACE,UAAA;AAAA,IACA;AAAA,MACE,GAAG,KAAA;AAAA,MACH,IAAA;AAAA,MACA,OAAS,EAAA,WAAA;AAAA,MACT,IAAM,EAAA,MAAA;AAAA,MACN,GAAKA,EAAAA,WAAAA;AAAA,KACP;AAAA,oBACC,KAAA,CAAA,aAAA,CAAA,QAAA,EAAA;AAAA,MAAO,EAAI,EAAA,EAAA;AAAA,MAAI,EAAI,EAAA,IAAA;AAAA,MAAM,CAAG,EAAA,CAAA;AAAA,MAAG,IAAK,EAAA,cAAA;AAAA,KAAe,CAAA;AAAA,oBACnD,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA;AAAA,MACC,MAAO,EAAA,cAAA;AAAA,MACP,aAAc,EAAA,OAAA;AAAA,MACd,WAAa,EAAA,CAAA;AAAA,MACb,CAAE,EAAA,oFAAA;AAAA,KACJ,CAAA;AAAA,GACF;AACF;;ACpBO,MAAM,SAET,GAAA,UAAA;AAAA,EAAW,CAAC,EAAE,IAAA,GAAO,QAAa,EAAA,GAAA,KAAA,IAASA,WAC7C,KAAA,aAAA;AAAA,IACE,UAAA;AAAA,IACA;AAAA,MACE,GAAG,KAAA;AAAA,MACH,IAAA;AAAA,MACA,OAAS,EAAA,WAAA;AAAA,MACT,IAAM,EAAA,MAAA;AAAA,MACN,GAAKA,EAAAA,WAAAA;AAAA,KACP;AAAA,oBACC,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA;AAAA,MACC,MAAO,EAAA,cAAA;AAAA,MACP,aAAc,EAAA,OAAA;AAAA,MACd,WAAa,EAAA,CAAA;AAAA,MACb,CAAE,EAAA,+JAAA;AAAA,KACJ,CAAA;AAAA,GACF;AACF;;ACnBO,MAAM,SAET,GAAA,UAAA;AAAA,EAAW,CAAC,EAAE,IAAA,GAAO,QAAa,EAAA,GAAA,KAAA,IAASA,WAC7C,KAAA,aAAA;AAAA,IACE,UAAA;AAAA,IACA;AAAA,MACE,GAAG,KAAA;AAAA,MACH,IAAA;AAAA,MACA,OAAS,EAAA,WAAA;AAAA,MACT,IAAM,EAAA,MAAA;AAAA,MACN,GAAKA,EAAAA,WAAAA;AAAA,KACP;AAAA,oBACC,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA;AAAA,MACC,IAAK,EAAA,cAAA;AAAA,MACL,CAAE,EAAA,qUAAA;AAAA,KACJ,CAAA;AAAA,GACF;AACF;;ACjBO,MAAM,yBAET,GAAA,UAAA;AAAA,EAAW,CAAC,EAAE,IAAA,GAAO,QAAa,EAAA,GAAA,KAAA,IAASA,WAC7C,KAAA,aAAA;AAAA,IACE,UAAA;AAAA,IACA;AAAA,MACE,GAAG,KAAA;AAAA,MACH,IAAA;AAAA,MACA,OAAS,EAAA,WAAA;AAAA,MACT,IAAM,EAAA,MAAA;AAAA,MACN,GAAKA,EAAAA,WAAAA;AAAA,KACP;AAAA,oBACC,KAAA,CAAA,aAAA,CAAA,QAAA,EAAA;AAAA,MAAO,EAAI,EAAA,EAAA;AAAA,MAAI,EAAI,EAAA,GAAA;AAAA,MAAK,CAAG,EAAA,CAAA;AAAA,MAAG,IAAK,EAAA,cAAA;AAAA,KAAe,CAAA;AAAA,oBAClD,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA;AAAA,MACC,MAAO,EAAA,cAAA;AAAA,MACP,aAAc,EAAA,OAAA;AAAA,MACd,WAAa,EAAA,CAAA;AAAA,MACb,CAAE,EAAA,qFAAA;AAAA,KACJ,CAAA;AAAA,GACF;AACF;;ACpBO,MAAM,QAET,GAAA,UAAA;AAAA,EAAW,CAAC,EAAE,IAAA,GAAO,QAAa,EAAA,GAAA,KAAA,IAASA,WAC7C,KAAA,aAAA;AAAA,IACE,UAAA;AAAA,IACA;AAAA,MACE,GAAG,KAAA;AAAA,MACH,IAAA;AAAA,MACA,OAAS,EAAA,WAAA;AAAA,MACT,IAAM,EAAA,MAAA;AAAA,MACN,GAAKA,EAAAA,WAAAA;AAAA,KACP;AAAA,oBACC,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA;AAAA,MACC,MAAO,EAAA,cAAA;AAAA,MACP,aAAc,EAAA,OAAA;AAAA,MACd,WAAa,EAAA,CAAA;AAAA,MACb,CAAE,EAAA,oJAAA;AAAA,KACJ,CAAA;AAAA,GACF;AACF;;ACnBO,MAAM,cAET,GAAA,UAAA;AAAA,EAAW,CAAC,EAAE,IAAA,GAAO,QAAa,EAAA,GAAA,KAAA,IAASA,WAC7C,KAAA,aAAA;AAAA,IACE,UAAA;AAAA,IACA;AAAA,MACE,GAAG,KAAA;AAAA,MACH,IAAA;AAAA,MACA,OAAS,EAAA,WAAA;AAAA,MACT,IAAM,EAAA,MAAA;AAAA,MACN,GAAKA,EAAAA,WAAAA;AAAA,KACP;AAAA,oBACC,KAAA,CAAA,aAAA,CAAA,QAAA,EAAA;AAAA,MAAO,EAAI,EAAA,EAAA;AAAA,MAAI,EAAI,EAAA,EAAA;AAAA,MAAI,CAAG,EAAA,CAAA;AAAA,MAAG,IAAK,EAAA,cAAA;AAAA,KAAe,CAAA;AAAA,oBACjD,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA;AAAA,MACC,MAAO,EAAA,cAAA;AAAA,MACP,aAAc,EAAA,OAAA;AAAA,MACd,WAAa,EAAA,CAAA;AAAA,MACb,CAAE,EAAA,sJAAA;AAAA,KACJ,CAAA;AAAA,GACF;AACF;;ACpBO,MAAM,YAET,GAAA,UAAA;AAAA,EAAW,CAAC,EAAE,IAAA,GAAO,QAAa,EAAA,GAAA,KAAA,IAASA,WAC7C,KAAA,aAAA;AAAA,IACE,UAAA;AAAA,IACA;AAAA,MACE,GAAG,KAAA;AAAA,MACH,IAAA;AAAA,MACA,OAAS,EAAA,WAAA;AAAA,MACT,IAAM,EAAA,MAAA;AAAA,MACN,GAAKA,EAAAA,WAAAA;AAAA,KACP;AAAA,oBACC,KAAA,CAAA,aAAA,CAAA,QAAA,EAAA;AAAA,MAAO,EAAI,EAAA,EAAA;AAAA,MAAI,EAAI,EAAA,EAAA;AAAA,MAAI,CAAG,EAAA,CAAA;AAAA,MAAG,IAAK,EAAA,cAAA;AAAA,KAAe,CAAA;AAAA,oBACjD,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA;AAAA,MACC,MAAO,EAAA,cAAA;AAAA,MACP,aAAc,EAAA,OAAA;AAAA,MACd,WAAa,EAAA,CAAA;AAAA,MACb,CAAE,EAAA,wJAAA;AAAA,KACJ,CAAA;AAAA,GACF;AACF;;ACpBO,MAAM,mBAET,GAAA,UAAA;AAAA,EAAW,CAAC,EAAE,IAAA,GAAO,QAAa,EAAA,GAAA,KAAA,IAASA,WAC7C,KAAA,aAAA;AAAA,IACE,UAAA;AAAA,IACA;AAAA,MACE,GAAG,KAAA;AAAA,MACH,IAAA;AAAA,MACA,OAAS,EAAA,WAAA;AAAA,MACT,IAAM,EAAA,MAAA;AAAA,MACN,GAAKA,EAAAA,WAAAA;AAAA,KACP;AAAA,oBACC,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA;AAAA,MACC,MAAO,EAAA,cAAA;AAAA,MACP,aAAc,EAAA,OAAA;AAAA,MACd,WAAa,EAAA,CAAA;AAAA,MACb,CAAE,EAAA,qDAAA;AAAA,KACJ,CAAA;AAAA,GACF;AACF;;ACnBO,MAAM,SAET,GAAA,UAAA;AAAA,EAAW,CAAC,EAAE,IAAA,GAAO,QAAa,EAAA,GAAA,KAAA,IAASA,WAC7C,KAAA,aAAA;AAAA,IACE,UAAA;AAAA,IACA;AAAA,MACE,GAAG,KAAA;AAAA,MACH,IAAA;AAAA,MACA,OAAS,EAAA,WAAA;AAAA,MACT,IAAM,EAAA,MAAA;AAAA,MACN,GAAKA,EAAAA,WAAAA;AAAA,KACP;AAAA,oBACC,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA;AAAA,MACC,MAAO,EAAA,cAAA;AAAA,MACP,aAAc,EAAA,OAAA;AAAA,MACd,WAAa,EAAA,CAAA;AAAA,MACb,CAAE,EAAA,UAAA;AAAA,KACJ,CAAA;AAAA,GACF;AACF;;ACnBO,MAAM,eAET,GAAA,UAAA;AAAA,EAAW,CAAC,EAAE,IAAA,GAAO,QAAa,EAAA,GAAA,KAAA,IAASA,WAC7C,KAAA,aAAA;AAAA,IACE,UAAA;AAAA,IACA;AAAA,MACE,GAAG,KAAA;AAAA,MACH,IAAA;AAAA,MACA,OAAS,EAAA,WAAA;AAAA,MACT,IAAM,EAAA,MAAA;AAAA,MACN,GAAKA,EAAAA,WAAAA;AAAA,KACP;AAAA,oBACC,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA;AAAA,MACC,MAAO,EAAA,cAAA;AAAA,MACP,aAAc,EAAA,OAAA;AAAA,MACd,WAAa,EAAA,CAAA;AAAA,MACb,CAAE,EAAA,0DAAA;AAAA,KACJ,CAAA;AAAA,GACF;AACF;;ACnBO,MAAM,QAET,GAAA,UAAA;AAAA,EAAW,CAAC,EAAE,IAAA,GAAO,QAAa,EAAA,GAAA,KAAA,IAASA,WAC7C,KAAA,aAAA;AAAA,IACE,UAAA;AAAA,IACA;AAAA,MACE,GAAG,KAAA;AAAA,MACH,IAAA;AAAA,MACA,OAAS,EAAA,WAAA;AAAA,MACT,IAAM,EAAA,MAAA;AAAA,MACN,GAAKA,EAAAA,WAAAA;AAAA,KACP;AAAA,oBACC,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA;AAAA,MACC,MAAO,EAAA,cAAA;AAAA,MACP,aAAc,EAAA,OAAA;AAAA,MACd,WAAa,EAAA,CAAA;AAAA,MACb,CAAE,EAAA,wKAAA;AAAA,KACJ,CAAA;AAAA,GACF;AACF;;ACnBO,MAAM,QAET,GAAA,UAAA;AAAA,EAAW,CAAC,EAAE,IAAA,GAAO,QAAa,EAAA,GAAA,KAAA,IAASA,WAC7C,KAAA,aAAA;AAAA,IACE,UAAA;AAAA,IACA;AAAA,MACE,GAAG,KAAA;AAAA,MACH,IAAA;AAAA,MACA,OAAS,EAAA,WAAA;AAAA,MACT,IAAM,EAAA,MAAA;AAAA,MACN,GAAKA,EAAAA,WAAAA;AAAA,KACP;AAAA,oBACC,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA;AAAA,MACC,MAAO,EAAA,cAAA;AAAA,MACP,aAAc,EAAA,OAAA;AAAA,MACd,WAAa,EAAA,CAAA;AAAA,MACb,CAAE,EAAA,kBAAA;AAAA,KACJ,CAAA;AAAA,GACF;AACF;;ACnBO,MAAM,sBAET,GAAA,UAAA;AAAA,EAAW,CAAC,EAAE,IAAA,GAAO,QAAa,EAAA,GAAA,KAAA,IAASA,WAC7C,KAAA,aAAA;AAAA,IACE,UAAA;AAAA,IACA;AAAA,MACE,GAAG,KAAA;AAAA,MACH,IAAA;AAAA,MACA,OAAS,EAAA,WAAA;AAAA,MACT,IAAM,EAAA,MAAA;AAAA,MACN,GAAKA,EAAAA,WAAAA;AAAA,KACP;AAAA,oBACC,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA;AAAA,MACC,MAAO,EAAA,cAAA;AAAA,MACP,aAAc,EAAA,OAAA;AAAA,MACd,WAAa,EAAA,CAAA;AAAA,MACb,CAAE,EAAA,qHAAA;AAAA,KACJ,CAAA;AAAA,GACF;AACF;;ACnBO,MAAM,kBAET,GAAA,UAAA;AAAA,EAAW,CAAC,EAAE,IAAA,GAAO,QAAa,EAAA,GAAA,KAAA,IAASA,WAC7C,KAAA,aAAA;AAAA,IACE,UAAA;AAAA,IACA;AAAA,MACE,GAAG,KAAA;AAAA,MACH,IAAA;AAAA,MACA,OAAS,EAAA,WAAA;AAAA,MACT,IAAM,EAAA,MAAA;AAAA,MACN,GAAKA,EAAAA,WAAAA;AAAA,KACP;AAAA,oBACC,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA;AAAA,MACC,IAAK,EAAA,cAAA;AAAA,MACL,CAAE,EAAA,yRAAA;AAAA,KACJ,CAAA;AAAA,GACF;AACF;;ACjBO,MAAM,mBAET,GAAA,UAAA;AAAA,EAAW,CAAC,EAAE,IAAA,GAAO,QAAa,EAAA,GAAA,KAAA,IAASA,WAC7C,KAAA,aAAA;AAAA,IACE,UAAA;AAAA,IACA;AAAA,MACE,GAAG,KAAA;AAAA,MACH,IAAA;AAAA,MACA,OAAS,EAAA,WAAA;AAAA,MACT,IAAM,EAAA,MAAA;AAAA,MACN,GAAKA,EAAAA,WAAAA;AAAA,KACP;AAAA,oBACC,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA;AAAA,MACC,IAAK,EAAA,cAAA;AAAA,MACL,CAAE,EAAA,gEAAA;AAAA,KACJ,CAAA;AAAA,oBACC,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA;AAAA,MACC,IAAK,EAAA,cAAA;AAAA,MACL,QAAS,EAAA,SAAA;AAAA,MACT,CAAE,EAAA,6yBAAA;AAAA,MACF,QAAS,EAAA,SAAA;AAAA,KACX,CAAA;AAAA,GACF;AACF;;ACvBO,MAAM,kBAET,GAAA,UAAA;AAAA,EAAW,CAAC,EAAE,IAAA,GAAO,QAAa,EAAA,GAAA,KAAA,IAASA,WAC7C,KAAA,aAAA;AAAA,IACE,UAAA;AAAA,IACA;AAAA,MACE,GAAG,KAAA;AAAA,MACH,IAAA;AAAA,MACA,OAAS,EAAA,WAAA;AAAA,MACT,IAAM,EAAA,MAAA;AAAA,MACN,GAAKA,EAAAA,WAAAA;AAAA,KACP;AAAA,oBACC,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA;AAAA,MACC,IAAK,EAAA,cAAA;AAAA,MACL,CAAE,EAAA,mbAAA;AAAA,KACJ,CAAA;AAAA,GACF;AACF;;ACjBO,MAAM,iBAET,GAAA,UAAA;AAAA,EAAW,CAAC,EAAE,IAAA,GAAO,QAAa,EAAA,GAAA,KAAA,IAASA,WAC7C,KAAA,aAAA;AAAA,IACE,UAAA;AAAA,IACA;AAAA,MACE,GAAG,KAAA;AAAA,MACH,IAAA;AAAA,MACA,OAAS,EAAA,WAAA;AAAA,MACT,IAAM,EAAA,MAAA;AAAA,MACN,GAAKA,EAAAA,WAAAA;AAAA,KACP;AAAA,oBACC,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA;AAAA,MACC,IAAK,EAAA,cAAA;AAAA,MACL,CAAE,EAAA,8fAAA;AAAA,KACJ,CAAA;AAAA,GACF;AACF;;ACjBO,MAAM,iBAET,GAAA,UAAA;AAAA,EAAW,CAAC,EAAE,IAAA,GAAO,QAAa,EAAA,GAAA,KAAA,IAASA,WAC7C,KAAA,aAAA;AAAA,IACE,UAAA;AAAA,IACA;AAAA,MACE,GAAG,KAAA;AAAA,MACH,IAAA;AAAA,MACA,OAAS,EAAA,WAAA;AAAA,MACT,IAAM,EAAA,MAAA;AAAA,MACN,GAAKA,EAAAA,WAAAA;AAAA,KACP;AAAA,oBACC,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA;AAAA,MACC,IAAK,EAAA,cAAA;AAAA,MACL,CAAE,EAAA,uWAAA;AAAA,KACJ,CAAA;AAAA,GACF;AACF;;ACjBO,MAAM,WAET,GAAA,UAAA;AAAA,EAAW,CAAC,EAAE,IAAA,GAAO,QAAa,EAAA,GAAA,KAAA,IAASA,WAC7C,KAAA,aAAA;AAAA,IACE,UAAA;AAAA,IACA;AAAA,MACE,GAAG,KAAA;AAAA,MACH,IAAA;AAAA,MACA,OAAS,EAAA,WAAA;AAAA,MACT,IAAM,EAAA,MAAA;AAAA,MACN,GAAKA,EAAAA,WAAAA;AAAA,KACP;AAAA,oBACC,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA;AAAA,MACC,MAAO,EAAA,cAAA;AAAA,MACP,aAAc,EAAA,OAAA;AAAA,MACd,WAAa,EAAA,CAAA;AAAA,MACb,CAAE,EAAA,mIAAA;AAAA,KACJ,CAAA;AAAA,GACF;AACF;;ACnBO,MAAM,QAET,GAAA,UAAA;AAAA,EAAW,CAAC,EAAE,IAAA,GAAO,QAAa,EAAA,GAAA,KAAA,IAASA,WAC7C,KAAA,aAAA;AAAA,IACE,UAAA;AAAA,IACA;AAAA,MACE,GAAG,KAAA;AAAA,MACH,IAAA;AAAA,MACA,OAAS,EAAA,WAAA;AAAA,MACT,IAAM,EAAA,MAAA;AAAA,MACN,GAAKA,EAAAA,WAAAA;AAAA,KACP;AAAA,oBACC,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA;AAAA,MACC,MAAO,EAAA,cAAA;AAAA,MACP,aAAc,EAAA,OAAA;AAAA,MACd,WAAa,EAAA,CAAA;AAAA,MACb,CAAE,EAAA,yGAAA;AAAA,KACJ,CAAA;AAAA,GACF;AACF;;ACnBO,MAAM,SAET,GAAA,UAAA;AAAA,EAAW,CAAC,EAAE,IAAA,GAAO,QAAa,EAAA,GAAA,KAAA,IAASA,WAC7C,KAAA,aAAA;AAAA,IACE,UAAA;AAAA,IACA;AAAA,MACE,GAAG,KAAA;AAAA,MACH,IAAA;AAAA,MACA,OAAS,EAAA,WAAA;AAAA,MACT,IAAM,EAAA,MAAA;AAAA,MACN,GAAKA,EAAAA,WAAAA;AAAA,KACP;AAAA,oBACC,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA;AAAA,MACC,MAAO,EAAA,cAAA;AAAA,MACP,aAAc,EAAA,OAAA;AAAA,MACd,WAAa,EAAA,CAAA;AAAA,MACb,CAAE,EAAA,0LAAA;AAAA,KACJ,CAAA;AAAA,GACF;AACF;;ACnBO,MAAM,UAET,GAAA,UAAA;AAAA,EAAW,CAAC,EAAE,IAAA,GAAO,QAAa,EAAA,GAAA,KAAA,IAASA,WAC7C,KAAA,aAAA;AAAA,IACE,UAAA;AAAA,IACA;AAAA,MACE,GAAG,KAAA;AAAA,MACH,IAAA;AAAA,MACA,OAAS,EAAA,WAAA;AAAA,MACT,IAAM,EAAA,MAAA;AAAA,MACN,GAAKA,EAAAA,WAAAA;AAAA,KACP;AAAA,oBACC,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA;AAAA,MACC,MAAO,EAAA,cAAA;AAAA,MACP,aAAc,EAAA,QAAA;AAAA,MACd,WAAa,EAAA,CAAA;AAAA,MACb,CAAE,EAAA,yDAAA;AAAA,KACJ,CAAA;AAAA,oBACC,KAAA,CAAA,aAAA,CAAA,QAAA,EAAA;AAAA,MAAO,EAAI,EAAA,IAAA;AAAA,MAAM,EAAI,EAAA,EAAA;AAAA,MAAI,CAAG,EAAA,GAAA;AAAA,MAAK,IAAK,EAAA,cAAA;AAAA,KAAe,CAAA;AAAA,GACxD;AACF;;;;"}
|
|
1
|
+
{"version":3,"file":"module.js","sources":["../src/icon.ts","../react/arrow-box-out.tsx","../react/arrow-down-left.tsx","../react/arrow-down-right.tsx","../react/arrow-down.tsx","../react/arrow-fat-right.tsx","../react/arrow-left.tsx","../react/arrow-right.tsx","../react/arrow-up-left.tsx","../react/arrow-up-right.tsx","../react/arrow-up.tsx","../react/bar-three.tsx","../react/chat.tsx","../react/check-mark.tsx","../react/chevron-down.tsx","../react/chevron-left.tsx","../react/chevron-right.tsx","../react/chevron-up.tsx","../react/circle-motion-x.tsx","../react/circle.tsx","../react/cog.tsx","../react/cross-circle.tsx","../react/cross.tsx","../react/envelope.tsx","../react/exclamation-point-circle.tsx","../react/funnel.tsx","../react/globe.tsx","../react/house.tsx","../react/information-mark-circle.tsx","../react/line-diagonal.tsx","../react/link.tsx","../react/lock-closed.tsx","../react/lock-open.tsx","../react/magnifying-glass.tsx","../react/microphone-slash.tsx","../react/microphone.tsx","../react/minus.tsx","../react/parallelogram.tsx","../react/pause-circle.tsx","../react/placeholder.tsx","../react/play-circle.tsx","../react/playback-speed-circle.tsx","../react/plug.tsx","../react/plus.tsx","../react/question-mark-circle.tsx","../react/rhombus.tsx","../react/shapes.tsx","../react/sliders-x.tsx","../react/sliders-y.tsx","../react/social-facebook.tsx","../react/social-instagram.tsx","../react/social-linkedin.tsx","../react/social-twitter.tsx","../react/social-youtube.tsx","../react/speaker-cross.tsx","../react/speaker-high.tsx","../react/square-rounded.tsx","../react/square.tsx","../react/stop-circle.tsx","../react/triangle.tsx","../react/user-add.tsx","../react/user.tsx","../react/users.tsx","../react/wallet.tsx"],"sourcesContent":["import { styled, theme } from '@mirohq/design-system-stitches'\nimport { Primitive } from '@mirohq/design-system-primitive'\nimport type { ComponentPropsWithRef } from 'react'\nimport { mapKeysToVariants } from '@mirohq/design-system-utils'\n\nexport const StyledIcon = styled(Primitive.svg, {\n display: 'inline-flex',\n verticalAlign: 'text-bottom',\n forcedColorAdjust: 'preserve-parent-color',\n variants: {\n size: {\n small: {\n width: '$icon-200',\n },\n medium: {\n width: '$icon-300',\n },\n large: {\n width: '$icon-400',\n },\n },\n color: mapKeysToVariants(theme.colors, 'color'),\n },\n})\n\nexport type StyledIconProps = ComponentPropsWithRef<typeof StyledIcon>\n\nexport interface IconProps extends StyledIconProps {\n /**\n * The icon size.\n */\n size?: StyledIconProps['size']\n\n /**\n * The icon color.\n */\n color?: StyledIconProps['color']\n\n // `fr` attr is not available on @types/react-dom 16.x\n fr?: string | number | undefined\n}\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconArrowBoxOut: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M17 14v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V8a1 1 0 0 1 1-1h4.5M20 4l-9 9m2.002-9h7v7'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconArrowDownLeft: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M5 19h9m-9 0v-9m0 9L19 5'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconArrowDownRight: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M19 19v-9m0 9h-9m9 0L5 5'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconArrowDown: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M12.205 3.205v17m-7-6.41 7 7 7-7'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconArrowFatRight: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <g clipPath='url(#a)'>\n <path\n stroke='currentColor'\n strokeWidth={2}\n d='M11 7H3.25a.25.25 0 0 0-.25.25v9.5c0 .138.112.25.25.25H11v3.937c0 .216.257.33.418.185L21.5 12 11.418 2.878a.25.25 0 0 0-.418.185V7Z'\n />\n </g>,\n <defs>\n <clipPath id='a'>\n <path d='M0 0h24v24H0z' />\n </clipPath>\n </defs>\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconArrowLeft: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M21 12H4m6.41-7-7 7 7 7'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconArrowRight: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M20 12H3m10.59-7 7 7-7 7'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconArrowUpLeft: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M5 5v9m0-9h9M5 5l14 14'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconArrowUpRight: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M19 5h-9m9 0v9m0-9L5 19'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconArrowUp: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M12.205 20.795v-17m7 6.41-7-7-7 7'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconBarThree: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M21 5H3m18 7H3m18 7H3'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconChat: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <g clipPath='url(#a)'>\n <path\n stroke='currentColor'\n strokeWidth={2}\n d='m12 18.5-3.847 2.404A.1.1 0 0 1 8 20.82V18.5H5.5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h13a2 2 0 0 1 2 2v10.5a2 2 0 0 1-2 2H12Z'\n />\n </g>,\n <defs>\n <clipPath id='a'>\n <path d='M0 0h24v24H0z' />\n </clipPath>\n </defs>\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconCheckMark: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='m5 11 5 5 9-9'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconChevronDown: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='m6 9.5 6 6 6-6'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconChevronLeft: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='m14.5 6-6 6 6 6'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconChevronRight: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='m9.5 6 6 6-6 6'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconChevronUp: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='m6 14.5 6-6 6 6'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconCircleMotionX: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <g clipPath='url(#a)'>\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M3.5 6H5m3 0h7m0 0a6 6 0 1 0 0 12 6 6 0 0 0 0-12ZM2.5 10H9m-6 4h1m3 0h2m-5 4h10.5'\n />\n </g>,\n <defs>\n <clipPath id='a'>\n <path d='M0 0h24v24H0z' />\n </clipPath>\n </defs>\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconCircle: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <g clipPath='url(#a)'>\n <path\n stroke='currentColor'\n strokeWidth={2}\n d='M20.5 12c0 4.97-3.53 8.5-8.5 8.5-4.97 0-8.5-3.53-8.5-8.5 0-4.97 3.53-8.5 8.5-8.5 4.97 0 8.5 3.53 8.5 8.5Z'\n />\n </g>,\n <defs>\n <clipPath id='a'>\n <path d='M0 0h24v24H0z' />\n </clipPath>\n </defs>\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconCog: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <circle cx={12} cy={12} r={1} stroke='currentColor' strokeWidth={2} />,\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeLinejoin='round'\n strokeWidth={2}\n d='M13.544 3h-3l-1 3-1.446.835L5 6.2 3.5 8.799l2.098 2.366v1.67L3.5 15.2 5 17.799l3.098-.634L9.544 18l1 3h3l1-3 1.446-.835 3.098.634 1.5-2.598-2.098-2.366v-1.67l2.099-2.366-1.5-2.598-3.099.634L14.544 6l-1-3Z'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconCrossCircle: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='m9 9 6 6m0-6-6 6m12-3a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconCross: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='m6 6 12 12m0-12L6 18'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconEnvelope: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='m7 9 3.618 3.459a2 2 0 0 0 2.764 0L17 9M4 19h16a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1Z'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconExclamationPointCircle: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M12 8v4m9 0a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-8.5 3.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Z'\n />,\n <path fill='currentColor' d='M13 15.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z' />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconFunnel: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <g clipPath='url(#a)'>\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M19.772 4H4.228a.1.1 0 0 0-.073.168L10 10.5V19l3.447-1.724a1 1 0 0 0 .553-.894V10.5l5.845-6.332A.1.1 0 0 0 19.772 4Z'\n />\n </g>,\n <defs>\n <clipPath id='a'>\n <path d='M0 0h24v24H0z' />\n </clipPath>\n </defs>\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconGlobe: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M11.663 3C9.495 4.62 8 8.042 8 12s1.495 7.38 3.663 9m.674-18C14.505 4.62 16 8.042 16 12s-1.495 7.38-3.663 9M4 9h16M4 15h16m1-3a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconHouse: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n fill='currentColor'\n d='m12 4.4.707-.707L12 2.986l-.707.707L12 4.4Zm-9.707 8.293a1 1 0 1 0 1.414 1.414l-1.414-1.414Zm18 1.414a1 1 0 0 0 1.414-1.414l-1.414 1.414Zm-9-10.414-9 9 1.414 1.414 9-9-1.414-1.414Zm0 1.414 9 9 1.414-1.414-9-9-1.414 1.414ZM7 19v-8.5H5V19h2Zm0 0H5a2 2 0 0 0 2 2v-2Zm10 0H7v2h10v-2Zm0 0v2a2 2 0 0 0 2-2h-2Zm0-8.5V19h2v-8.5h-2Z'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconInformationMarkCircle: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path fill='currentColor' d='M13 8.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z' />,\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M12 12v4m9-4a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-8.5-3.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Z'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconLineDiagonal: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <g clipPath='url(#a)'>\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M4 20 20 4'\n />\n </g>,\n <defs>\n <clipPath id='a'>\n <path d='M0 0h24v24H0z' />\n </clipPath>\n </defs>\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconLink: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='m7.757 11.293-3.182 3.182a3.5 3.5 0 0 0 4.95 4.95l3.182-3.182M10.939 8.11l3.535-3.535a3.5 3.5 0 1 1 4.95 4.95L15.89 13.06m-7.425 2.475 7.071-7.071'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconLockClosed: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <circle cx={12} cy={16} r={1} fill='currentColor' />,\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M16.5 11V5a2 2 0 0 0-2-2h-5a2 2 0 0 0-2 2v6M7 21h10a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2Zm6-5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconLockOpen: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <circle cx={12} cy={16} r={1} fill='currentColor' />,\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M16.5 11V5a2 2 0 0 0-2-2h-5a2 2 0 0 0-2 2v1.5M7 21h10a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2Zm6-5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconMagnifyingGlass: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='m20 20-5.5-5.5M16 10a6 6 0 1 1-12 0 6 6 0 0 1 12 0Z'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconMicrophoneSlash: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <g clipPath='url(#a)'>\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M19 8v3a7 7 0 0 1-7 7m0 0v3m0-3a6.984 6.984 0 0 1-5.284-2.409M15 7v4a3 3 0 0 1-5.387 1.818M15 7 4 18M15 7l4-4M5 8v3c0 .34.024.673.07 1M9 7.5V6a3 3 0 0 1 4.5-2.599'\n />\n </g>,\n <defs>\n <clipPath id='a'>\n <path d='M0 0h24v24H0z' />\n </clipPath>\n </defs>\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconMicrophone: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <g clipPath='url(#a)'>\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M5 8v3a7 7 0 0 0 7 7m7-10v3a7 7 0 0 1-7 7m0 0v3m3-15v5a3 3 0 1 1-6 0V6a3 3 0 1 1 6 0Z'\n />\n </g>,\n <defs>\n <clipPath id='a'>\n <path d='M0 0h24v24H0z' />\n </clipPath>\n </defs>\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconMinus: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M5 12h14'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconParallelogram: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <g clipPath='url(#a)'>\n <path\n stroke='currentColor'\n strokeWidth={2}\n d='M21.68 4H6.195a.25.25 0 0 0-.242.19l-3.875 15.5a.25.25 0 0 0 .242.31h15.485a.25.25 0 0 0 .242-.19l3.875-15.5A.25.25 0 0 0 21.68 4Z'\n />\n </g>,\n <defs>\n <clipPath id='a'>\n <path d='M0 0h24v24H0z' />\n </clipPath>\n </defs>\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconPauseCircle: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <g clipPath='url(#a)'>\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M13.889 9.167v5.666M10.11 9.167v5.666M20.5 12a8.5 8.5 0 1 1-17 0 8.5 8.5 0 0 1 17 0Z'\n />\n </g>,\n <defs>\n <clipPath id='a'>\n <path d='M0 0h24v24H0z' />\n </clipPath>\n </defs>\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconPlaceholder: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='m3 3 18 18m0-18L3 21m18-9a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconPlayCircle: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <circle cx={12} cy={12} r={8.5} stroke='currentColor' strokeWidth={2} />,\n <path\n fill='currentColor'\n stroke='currentColor'\n d='M15.099 12 10.5 15.066V8.934L15.099 12Z'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconPlaybackSpeedCircle: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M10.583 3.618a8.5 8.5 0 1 1 .173 16.792M7.3 4.917a8.547 8.547 0 0 0-2.222 2.15m-1.444 3.421a8.55 8.55 0 0 0-.016 2.929m1.479 3.543a8.55 8.55 0 0 0 1.709 1.769'\n />,\n <path\n fill='currentColor'\n stroke='currentColor'\n d='M15.099 12 10.5 15.066V8.934L15.099 12Z'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconPlug: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='m12.385 5.9 3.535-3.536m2.122 9.192 3.535-3.535M3.192 20.749l4.95-4.95m2.122-12.02 9.899 9.899-3.536 3.535a5 5 0 0 1-7.07 0l-2.83-2.828a5 5 0 0 1 0-7.071l3.537-3.536Z'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconPlus: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M5 12h14m-7-7v14'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconQuestionMarkCircle: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M9.17 9a3.001 3.001 0 1 1 3.812 3.836c-.522.18-.982.612-.982 1.164v.25m0 2.65v.1m9-5a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconRhombus: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <g clipPath='url(#a)'>\n <path\n stroke='currentColor'\n strokeWidth={2}\n d='m11.823 3.177-8.646 8.646a.25.25 0 0 0 0 .354l8.646 8.646a.25.25 0 0 0 .354 0l8.646-8.646a.25.25 0 0 0 0-.354l-8.646-8.646a.25.25 0 0 0-.354 0Z'\n />\n </g>,\n <defs>\n <clipPath id='a'>\n <path d='M0 0h24v24H0z' />\n </clipPath>\n </defs>\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconShapes: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <g clipPath='url(#a)'>\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M8 9.5a6.5 6.5 0 1 1 6.5 6.5M3.25 10h10.5a.25.25 0 0 1 .25.25v10.5a.25.25 0 0 1-.25.25H3.25a.25.25 0 0 1-.25-.25v-10.5a.25.25 0 0 1 .25-.25Z'\n />\n </g>,\n <defs>\n <clipPath id='a'>\n <path d='M0 0h24v24H0z' />\n </clipPath>\n </defs>\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconSlidersX: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <g clipPath='url(#a)'>\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M20 8h-5M9 8H4m11.5 8H4m8-6a2 2 0 1 1 0-4 2 2 0 0 1 0 4Zm6 8a2 2 0 1 1 0-4 2 2 0 0 1 0 4Z'\n />\n </g>,\n <defs>\n <clipPath id='a'>\n <path d='M0 0h24v24H0z' />\n </clipPath>\n </defs>\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconSlidersY: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <g clipPath='url(#a)'>\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M5 5v4m0 6v4m7-14v10m0 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm7-5.5V19M7 12a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm14-5a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z'\n />\n </g>,\n <defs>\n <clipPath id='a'>\n <path d='M0 0h24v24H0z' />\n </clipPath>\n </defs>\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconSocialFacebook: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n fill='currentColor'\n d='M22 12.061C22 6.505 17.523 2 12 2S2 6.505 2 12.061c0 5.022 3.657 9.184 8.438 9.939v-7.03h-2.54v-2.91h2.54V9.845c0-2.522 1.492-3.915 3.777-3.915 1.094 0 2.238.197 2.238.197v2.476h-1.26c-1.243 0-1.63.775-1.63 1.57v1.888h2.773l-.443 2.908h-2.33V22c4.78-.755 8.437-4.917 8.437-9.939Z'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconSocialInstagram: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n fill='currentColor'\n d='M8.667 12a3.333 3.333 0 1 0 6.666 0 3.333 3.333 0 0 0-6.666 0Z'\n />,\n <path\n fill='currentColor'\n fillRule='evenodd'\n d='M12 2c-2.716 0-3.056.012-4.123.06-1.064.049-1.791.218-2.427.465a4.902 4.902 0 0 0-1.772 1.153A4.902 4.902 0 0 0 2.525 5.45c-.247.636-.416 1.363-.465 2.427C2.011 8.944 2 9.284 2 12s.011 3.056.06 4.123c.049 1.064.218 1.791.465 2.427a4.902 4.902 0 0 0 1.153 1.772 4.901 4.901 0 0 0 1.772 1.153c.636.247 1.363.416 2.427.465 1.067.048 1.407.06 4.123.06s3.056-.012 4.123-.06c1.064-.049 1.791-.218 2.427-.465a4.902 4.902 0 0 0 1.772-1.153 4.902 4.902 0 0 0 1.153-1.772c.247-.636.416-1.363.465-2.427.048-1.067.06-1.407.06-4.123s-.012-3.056-.06-4.123c-.049-1.064-.218-1.791-.465-2.427a4.901 4.901 0 0 0-1.153-1.772 4.902 4.902 0 0 0-1.772-1.153c-.636-.247-1.363-.416-2.427-.465C15.056 2.012 14.716 2 12 2Zm6.538 4.662a1.2 1.2 0 1 1-2.4 0 1.2 1.2 0 0 1 2.4 0ZM6.865 12a5.135 5.135 0 1 1 10.27 0 5.135 5.135 0 0 1-10.27 0Z'\n clipRule='evenodd'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconSocialLinkedin: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n fill='currentColor'\n d='M20.52 2c.816 0 1.48.646 1.48 1.442v17.115c0 .796-.664 1.443-1.48 1.443H3.475C2.661 22 2 21.353 2 20.557V3.442C2 2.646 2.661 2 3.475 2h17.046Zm-1.477 17.042v-5.234c0-2.57-.555-4.547-3.558-4.547-1.444 0-2.412.791-2.807 1.542h-.04V9.498H9.793v9.544h2.963v-4.72c0-1.246.235-2.452 1.779-2.452 1.522 0 1.541 1.424 1.541 2.53v4.642h2.966ZM7.933 9.498h-2.97v9.544h2.97V9.498ZM6.449 4.753a1.72 1.72 0 1 0-.003 3.44 1.72 1.72 0 0 0 .003-3.44Z'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconSocialTwitter: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n fill='currentColor'\n d='M7.919 21C16.22 21 20.76 14.074 20.76 8.068c0-.196 0-.392-.013-.587A9.22 9.22 0 0 0 23 5.128a8.963 8.963 0 0 1-2.593.715 4.556 4.556 0 0 0 1.985-2.514 9.01 9.01 0 0 1-2.866 1.104A4.505 4.505 0 0 0 16.235 3c-2.479 0-4.518 2.054-4.518 4.55 0 .345.039.69.117 1.028A12.791 12.791 0 0 1 2.53 3.829c-1.19 2.065-.574 4.741 1.4 6.067a4.456 4.456 0 0 1-2.049-.569v.058c0 2.155 1.523 4.029 3.621 4.455a4.477 4.477 0 0 1-2.038.078 4.532 4.532 0 0 0 4.217 3.157A9.019 9.019 0 0 1 1 18.958a12.716 12.716 0 0 0 6.919 2.039'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconSocialYoutube: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n fill='currentColor'\n d='M23.02 6.155c-.265-1.045-1.044-1.868-2.034-2.147C19.192 3.5 12 3.5 12 3.5s-7.192 0-8.986.508C2.024 4.287 1.245 5.11.98 6.155.5 8.049.5 12 .5 12s0 3.952.48 5.845c.265 1.045 1.044 1.868 2.034 2.148C4.808 20.5 12 20.5 12 20.5s7.192 0 8.986-.507c.99-.28 1.77-1.103 2.034-2.148.48-1.893.48-5.845.48-5.845s0-3.951-.48-5.845ZM9.7 15.643V8.357L15.675 12 9.7 15.643Z'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconSpeakerCross: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <g clipPath='url(#a)'>\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='m21 9.5-5 5m0-5 5 5M3.1 15h3.856a.1.1 0 0 1 .074.033l4.796 5.276A.1.1 0 0 0 12 20.24V3.76a.1.1 0 0 0-.174-.068L7.03 8.967A.1.1 0 0 1 6.956 9H3.1a.1.1 0 0 0-.1.1v5.8a.1.1 0 0 0 .1.1Z'\n />\n </g>,\n <defs>\n <clipPath id='a'>\n <path d='M0 0h24v24H0z' />\n </clipPath>\n </defs>\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconSpeakerHigh: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <g clipPath='url(#a)'>\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M16 10v4m3-8.5V18M3.1 15h3.856a.1.1 0 0 1 .074.033l4.796 5.276A.1.1 0 0 0 12 20.24V3.76a.1.1 0 0 0-.174-.068L7.03 8.967A.1.1 0 0 1 6.956 9H3.1a.1.1 0 0 0-.1.1v5.8a.1.1 0 0 0 .1.1Z'\n />\n </g>,\n <defs>\n <clipPath id='a'>\n <path d='M0 0h24v24H0z' />\n </clipPath>\n </defs>\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconSquareRounded: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <g clipPath='url(#a)'>\n <path\n stroke='currentColor'\n strokeWidth={2}\n d='M16 4H8a4 4 0 0 0-4 4v8a4 4 0 0 0 4 4h8a4 4 0 0 0 4-4V8a4 4 0 0 0-4-4Z'\n />\n </g>,\n <defs>\n <clipPath id='a'>\n <path d='M0 0h24v24H0z' />\n </clipPath>\n </defs>\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconSquare: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <g clipPath='url(#a)'>\n <path\n stroke='currentColor'\n strokeWidth={2}\n d='M19.75 4H4.25a.25.25 0 0 0-.25.25v15.5c0 .138.112.25.25.25h15.5a.25.25 0 0 0 .25-.25V4.25a.25.25 0 0 0-.25-.25Z'\n />\n </g>,\n <defs>\n <clipPath id='a'>\n <path d='M0 0h24v24H0z' />\n </clipPath>\n </defs>\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconStopCircle: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <circle cx={12} cy={12} r={8.5} stroke='currentColor' strokeWidth={2} />,\n <path\n fill='currentColor'\n d='M9 10a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1v-4Z'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconTriangle: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <g clipPath='url(#a)'>\n <path\n stroke='currentColor'\n strokeWidth={2}\n d='M20.58 20.526H3.4a.25.25 0 0 1-.225-.359l8.138-16.729a.25.25 0 0 1 .445-.01l9.043 16.73a.25.25 0 0 1-.22.368Z'\n />\n </g>,\n <defs>\n <clipPath id='a'>\n <path d='M0 0h24v24H0z' />\n </clipPath>\n </defs>\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconUserAdd: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M2 11h3m0 0h3m-3 0V8m0 3v3m3 6 .443-2.658A4 4 0 0 1 12.389 14h5.223a4 4 0 0 1 3.945 3.342L22 20M18 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconUser: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='m4 20 .443-2.658A4 4 0 0 1 8.389 14h7.223a4 4 0 0 1 3.945 3.342L20 20M16 7a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconUsers: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='m1 20 .443-2.658A4 4 0 0 1 5.389 14h5.222a4 4 0 0 1 3.946 3.342L15 20m3-4h1.852a3 3 0 0 1 2.977 2.628L23 20M11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm9 2.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Z'\n />\n )\n)\n","import React, { forwardRef, createElement } from 'react'\nimport type { ForwardRefExoticComponent, RefAttributes } from 'react'\n\nimport { StyledIcon } from '../src/icon'\nimport type { IconProps } from '../src/icon'\n\nexport const IconWallet: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n {\n ...props,\n size,\n viewBox: '0 0 24 24',\n fill: 'none',\n ref: forwardRef,\n },\n <path\n stroke='currentColor'\n strokeLinecap='square'\n strokeWidth={2}\n d='M20 16V4H6a2 2 0 0 0-2 2v11m14-1H6a2 2 0 1 0 0 4h12v-4Z'\n />,\n <path fill='currentColor' d='M17 10a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z' />\n )\n)\n"],"names":["forwardRef"],"mappings":"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"}
|
package/dist/types.d.ts
CHANGED
|
@@ -380,6 +380,8 @@ declare const IconArrowDownRight: ForwardRefExoticComponent<IconProps & RefAttri
|
|
|
380
380
|
|
|
381
381
|
declare const IconArrowDown: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
382
382
|
|
|
383
|
+
declare const IconArrowFatRight: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
384
|
+
|
|
383
385
|
declare const IconArrowLeft: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
384
386
|
|
|
385
387
|
declare const IconArrowRight: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -392,6 +394,8 @@ declare const IconArrowUp: ForwardRefExoticComponent<IconProps & RefAttributes<S
|
|
|
392
394
|
|
|
393
395
|
declare const IconBarThree: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
394
396
|
|
|
397
|
+
declare const IconChat: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
398
|
+
|
|
395
399
|
declare const IconCheckMark: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
396
400
|
|
|
397
401
|
declare const IconChevronDown: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -402,6 +406,10 @@ declare const IconChevronRight: ForwardRefExoticComponent<IconProps & RefAttribu
|
|
|
402
406
|
|
|
403
407
|
declare const IconChevronUp: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
404
408
|
|
|
409
|
+
declare const IconCircleMotionX: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
410
|
+
|
|
411
|
+
declare const IconCircle: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
412
|
+
|
|
405
413
|
declare const IconCog: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
406
414
|
|
|
407
415
|
declare const IconCrossCircle: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -412,12 +420,16 @@ declare const IconEnvelope: ForwardRefExoticComponent<IconProps & RefAttributes<
|
|
|
412
420
|
|
|
413
421
|
declare const IconExclamationPointCircle: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
414
422
|
|
|
423
|
+
declare const IconFunnel: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
424
|
+
|
|
415
425
|
declare const IconGlobe: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
416
426
|
|
|
417
427
|
declare const IconHouse: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
418
428
|
|
|
419
429
|
declare const IconInformationMarkCircle: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
420
430
|
|
|
431
|
+
declare const IconLineDiagonal: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
432
|
+
|
|
421
433
|
declare const IconLink: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
422
434
|
|
|
423
435
|
declare const IconLockClosed: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -426,16 +438,36 @@ declare const IconLockOpen: ForwardRefExoticComponent<IconProps & RefAttributes<
|
|
|
426
438
|
|
|
427
439
|
declare const IconMagnifyingGlass: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
428
440
|
|
|
441
|
+
declare const IconMicrophoneSlash: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
442
|
+
|
|
443
|
+
declare const IconMicrophone: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
444
|
+
|
|
429
445
|
declare const IconMinus: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
430
446
|
|
|
447
|
+
declare const IconParallelogram: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
448
|
+
|
|
449
|
+
declare const IconPauseCircle: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
450
|
+
|
|
431
451
|
declare const IconPlaceholder: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
432
452
|
|
|
453
|
+
declare const IconPlayCircle: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
454
|
+
|
|
455
|
+
declare const IconPlaybackSpeedCircle: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
456
|
+
|
|
433
457
|
declare const IconPlug: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
434
458
|
|
|
435
459
|
declare const IconPlus: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
436
460
|
|
|
437
461
|
declare const IconQuestionMarkCircle: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
438
462
|
|
|
463
|
+
declare const IconRhombus: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
464
|
+
|
|
465
|
+
declare const IconShapes: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
466
|
+
|
|
467
|
+
declare const IconSlidersX: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
468
|
+
|
|
469
|
+
declare const IconSlidersY: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
470
|
+
|
|
439
471
|
declare const IconSocialFacebook: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
440
472
|
|
|
441
473
|
declare const IconSocialInstagram: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -446,6 +478,18 @@ declare const IconSocialTwitter: ForwardRefExoticComponent<IconProps & RefAttrib
|
|
|
446
478
|
|
|
447
479
|
declare const IconSocialYoutube: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
448
480
|
|
|
481
|
+
declare const IconSpeakerCross: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
482
|
+
|
|
483
|
+
declare const IconSpeakerHigh: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
484
|
+
|
|
485
|
+
declare const IconSquareRounded: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
486
|
+
|
|
487
|
+
declare const IconSquare: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
488
|
+
|
|
489
|
+
declare const IconStopCircle: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
490
|
+
|
|
491
|
+
declare const IconTriangle: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
492
|
+
|
|
449
493
|
declare const IconUserAdd: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
450
494
|
|
|
451
495
|
declare const IconUser: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -454,4 +498,4 @@ declare const IconUsers: ForwardRefExoticComponent<IconProps & RefAttributes<SVG
|
|
|
454
498
|
|
|
455
499
|
declare const IconWallet: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
456
500
|
|
|
457
|
-
export { IconArrowBoxOut, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowLeft, IconArrowRight, IconArrowUp, IconArrowUpLeft, IconArrowUpRight, IconBarThree, IconCheckMark, IconChevronDown, IconChevronLeft, IconChevronRight, IconChevronUp, IconCog, IconCross, IconCrossCircle, IconEnvelope, IconExclamationPointCircle, IconGlobe, IconHouse, IconInformationMarkCircle, IconLink, IconLockClosed, IconLockOpen, IconMagnifyingGlass, IconMinus, IconPlaceholder, IconPlug, IconPlus, IconProps, IconQuestionMarkCircle, IconSocialFacebook, IconSocialInstagram, IconSocialLinkedin, IconSocialTwitter, IconSocialYoutube, IconUser, IconUserAdd, IconUsers, IconWallet };
|
|
501
|
+
export { IconArrowBoxOut, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowFatRight, IconArrowLeft, IconArrowRight, IconArrowUp, IconArrowUpLeft, IconArrowUpRight, IconBarThree, IconChat, IconCheckMark, IconChevronDown, IconChevronLeft, IconChevronRight, IconChevronUp, IconCircle, IconCircleMotionX, IconCog, IconCross, IconCrossCircle, IconEnvelope, IconExclamationPointCircle, IconFunnel, IconGlobe, IconHouse, IconInformationMarkCircle, IconLineDiagonal, IconLink, IconLockClosed, IconLockOpen, IconMagnifyingGlass, IconMicrophone, IconMicrophoneSlash, IconMinus, IconParallelogram, IconPauseCircle, IconPlaceholder, IconPlayCircle, IconPlaybackSpeedCircle, IconPlug, IconPlus, IconProps, IconQuestionMarkCircle, IconRhombus, IconShapes, IconSlidersX, IconSlidersY, IconSocialFacebook, IconSocialInstagram, IconSocialLinkedin, IconSocialTwitter, IconSocialYoutube, IconSpeakerCross, IconSpeakerHigh, IconSquare, IconSquareRounded, IconStopCircle, IconTriangle, IconUser, IconUserAdd, IconUsers, IconWallet };
|
package/package.json
CHANGED
package/react/arrow-down.tsx
CHANGED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import React, { forwardRef, createElement } from 'react'
|
|
2
|
+
import type { ForwardRefExoticComponent, RefAttributes } from 'react'
|
|
3
|
+
|
|
4
|
+
import { StyledIcon } from '../src/icon'
|
|
5
|
+
import type { IconProps } from '../src/icon'
|
|
6
|
+
|
|
7
|
+
export const IconArrowFatRight: ForwardRefExoticComponent<
|
|
8
|
+
IconProps & RefAttributes<SVGSVGElement>
|
|
9
|
+
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
|
+
createElement(
|
|
11
|
+
StyledIcon,
|
|
12
|
+
{
|
|
13
|
+
...props,
|
|
14
|
+
size,
|
|
15
|
+
viewBox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
ref: forwardRef,
|
|
18
|
+
},
|
|
19
|
+
<g clipPath='url(#a)'>
|
|
20
|
+
<path
|
|
21
|
+
stroke='currentColor'
|
|
22
|
+
strokeWidth={2}
|
|
23
|
+
d='M11 7H3.25a.25.25 0 0 0-.25.25v9.5c0 .138.112.25.25.25H11v3.937c0 .216.257.33.418.185L21.5 12 11.418 2.878a.25.25 0 0 0-.418.185V7Z'
|
|
24
|
+
/>
|
|
25
|
+
</g>,
|
|
26
|
+
<defs>
|
|
27
|
+
<clipPath id='a'>
|
|
28
|
+
<path d='M0 0h24v24H0z' />
|
|
29
|
+
</clipPath>
|
|
30
|
+
</defs>
|
|
31
|
+
)
|
|
32
|
+
)
|
package/react/arrow-up.tsx
CHANGED
package/react/chat.tsx
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import React, { forwardRef, createElement } from 'react'
|
|
2
|
+
import type { ForwardRefExoticComponent, RefAttributes } from 'react'
|
|
3
|
+
|
|
4
|
+
import { StyledIcon } from '../src/icon'
|
|
5
|
+
import type { IconProps } from '../src/icon'
|
|
6
|
+
|
|
7
|
+
export const IconChat: ForwardRefExoticComponent<
|
|
8
|
+
IconProps & RefAttributes<SVGSVGElement>
|
|
9
|
+
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
|
+
createElement(
|
|
11
|
+
StyledIcon,
|
|
12
|
+
{
|
|
13
|
+
...props,
|
|
14
|
+
size,
|
|
15
|
+
viewBox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
ref: forwardRef,
|
|
18
|
+
},
|
|
19
|
+
<g clipPath='url(#a)'>
|
|
20
|
+
<path
|
|
21
|
+
stroke='currentColor'
|
|
22
|
+
strokeWidth={2}
|
|
23
|
+
d='m12 18.5-3.847 2.404A.1.1 0 0 1 8 20.82V18.5H5.5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h13a2 2 0 0 1 2 2v10.5a2 2 0 0 1-2 2H12Z'
|
|
24
|
+
/>
|
|
25
|
+
</g>,
|
|
26
|
+
<defs>
|
|
27
|
+
<clipPath id='a'>
|
|
28
|
+
<path d='M0 0h24v24H0z' />
|
|
29
|
+
</clipPath>
|
|
30
|
+
</defs>
|
|
31
|
+
)
|
|
32
|
+
)
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import React, { forwardRef, createElement } from 'react'
|
|
2
|
+
import type { ForwardRefExoticComponent, RefAttributes } from 'react'
|
|
3
|
+
|
|
4
|
+
import { StyledIcon } from '../src/icon'
|
|
5
|
+
import type { IconProps } from '../src/icon'
|
|
6
|
+
|
|
7
|
+
export const IconCircleMotionX: ForwardRefExoticComponent<
|
|
8
|
+
IconProps & RefAttributes<SVGSVGElement>
|
|
9
|
+
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
|
+
createElement(
|
|
11
|
+
StyledIcon,
|
|
12
|
+
{
|
|
13
|
+
...props,
|
|
14
|
+
size,
|
|
15
|
+
viewBox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
ref: forwardRef,
|
|
18
|
+
},
|
|
19
|
+
<g clipPath='url(#a)'>
|
|
20
|
+
<path
|
|
21
|
+
stroke='currentColor'
|
|
22
|
+
strokeLinecap='round'
|
|
23
|
+
strokeWidth={2}
|
|
24
|
+
d='M3.5 6H5m3 0h7m0 0a6 6 0 1 0 0 12 6 6 0 0 0 0-12ZM2.5 10H9m-6 4h1m3 0h2m-5 4h10.5'
|
|
25
|
+
/>
|
|
26
|
+
</g>,
|
|
27
|
+
<defs>
|
|
28
|
+
<clipPath id='a'>
|
|
29
|
+
<path d='M0 0h24v24H0z' />
|
|
30
|
+
</clipPath>
|
|
31
|
+
</defs>
|
|
32
|
+
)
|
|
33
|
+
)
|