@mirohq/design-system-icons 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (63) hide show
  1. package/README.md +52 -0
  2. package/dist/main.js +591 -0
  3. package/dist/main.js.map +1 -0
  4. package/dist/module.js +557 -0
  5. package/dist/module.js.map +1 -0
  6. package/dist/types.d.ts +426 -0
  7. package/package.json +57 -0
  8. package/react/arrow-left.tsx +21 -0
  9. package/react/arrow-right.tsx +21 -0
  10. package/react/arrow-top-right.tsx +21 -0
  11. package/react/bar-three.tsx +21 -0
  12. package/react/check-mark.tsx +21 -0
  13. package/react/chevron-down.tsx +21 -0
  14. package/react/chevron-left.tsx +21 -0
  15. package/react/chevron-right.tsx +21 -0
  16. package/react/chevron-up.tsx +21 -0
  17. package/react/cross-circle.tsx +22 -0
  18. package/react/cross.tsx +21 -0
  19. package/react/envelope.tsx +30 -0
  20. package/react/exclamation-point-circle.tsx +22 -0
  21. package/react/globe.tsx +22 -0
  22. package/react/icon-placeholder.tsx +22 -0
  23. package/react/index.ts +27 -0
  24. package/react/information-mark-circle.tsx +22 -0
  25. package/react/lock-closed.tsx +32 -0
  26. package/react/lock-open.tsx +32 -0
  27. package/react/minus.tsx +21 -0
  28. package/react/plus.tsx +21 -0
  29. package/react/question-mark.tsx +22 -0
  30. package/react/search.tsx +22 -0
  31. package/react/social-facebook.tsx +19 -0
  32. package/react/social-instagram.tsx +25 -0
  33. package/react/social-linkedin.tsx +19 -0
  34. package/react/social-twitter.tsx +19 -0
  35. package/react/social-youtube.tsx +19 -0
  36. package/svg/24/arrow-left.svg +1 -0
  37. package/svg/24/arrow-right.svg +1 -0
  38. package/svg/24/arrow-top-right.svg +1 -0
  39. package/svg/24/bar-three.svg +1 -0
  40. package/svg/24/check-mark.svg +1 -0
  41. package/svg/24/chevron-down.svg +1 -0
  42. package/svg/24/chevron-left.svg +1 -0
  43. package/svg/24/chevron-right.svg +1 -0
  44. package/svg/24/chevron-up.svg +1 -0
  45. package/svg/24/cross-circle.svg +1 -0
  46. package/svg/24/cross.svg +1 -0
  47. package/svg/24/envelope.svg +1 -0
  48. package/svg/24/exclamation-point-circle.svg +1 -0
  49. package/svg/24/globe.svg +1 -0
  50. package/svg/24/icon-placeholder.svg +1 -0
  51. package/svg/24/information-mark-circle.svg +1 -0
  52. package/svg/24/lock-closed.svg +1 -0
  53. package/svg/24/lock-open.svg +1 -0
  54. package/svg/24/minus.svg +1 -0
  55. package/svg/24/plus.svg +1 -0
  56. package/svg/24/question-mark.svg +1 -0
  57. package/svg/24/search.svg +1 -0
  58. package/svg/24/social-facebook.svg +1 -0
  59. package/svg/24/social-instagram.svg +1 -0
  60. package/svg/24/social-linkedin.svg +1 -0
  61. package/svg/24/social-twitter.svg +1 -0
  62. package/svg/24/social-youtube.svg +1 -0
  63. package/svg/meta.json +150 -0
@@ -0,0 +1 @@
1
+ {"version":3,"file":"main.js","sources":["../src/icon.ts","../react/arrow-left.tsx","../react/arrow-right.tsx","../react/arrow-top-right.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/cross-circle.tsx","../react/cross.tsx","../react/envelope.tsx","../react/exclamation-point-circle.tsx","../react/globe.tsx","../react/icon-placeholder.tsx","../react/information-mark-circle.tsx","../react/lock-closed.tsx","../react/lock-open.tsx","../react/minus.tsx","../react/plus.tsx","../react/question-mark.tsx","../react/search.tsx","../react/social-facebook.tsx","../react/social-instagram.tsx","../react/social-linkedin.tsx","../react/social-twitter.tsx","../react/social-youtube.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","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 { ...props, size, viewBox: '0 0 24 24', fill: 'none', ref: forwardRef },\n <path d='M0 0h23.59v24H0z' />,\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M20.59 12h-17M10 5l-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 { ...props, size, viewBox: '0 0 24 24', fill: 'none', ref: forwardRef },\n <path d='M0 0h24v24H0z' />,\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 IconArrowTopRight: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n { ...props, size, viewBox: '0 0 24 24', fill: 'none', ref: forwardRef },\n <path d='M0 0h24v24H0z' />,\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M10 5h9v9m0-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 IconBarThree: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n { ...props, size, viewBox: '0 0 24 24', fill: 'none', ref: forwardRef },\n <path d='M0 0h24v24H0z' />,\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 { ...props, size, viewBox: '0 0 24 24', fill: 'none', ref: forwardRef },\n <path d='M0 0h24v24H0z' />,\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 { ...props, size, viewBox: '0 0 24 24', fill: 'none', ref: forwardRef },\n <path d='M0 0h24v24H0z' />,\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 { ...props, size, viewBox: '0 0 24 24', fill: 'none', ref: forwardRef },\n <path d='M0 0h24v24H0z' />,\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 { ...props, size, viewBox: '0 0 24 24', fill: 'none', ref: forwardRef },\n <path d='M0 0h24v24H0z' />,\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 { ...props, size, viewBox: '0 0 24 24', fill: 'none', ref: forwardRef },\n <path d='M0 0h24v24H0z' />,\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 IconCrossCircle: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n { ...props, size, viewBox: '0 0 24 24', fill: 'none', ref: forwardRef },\n <path d='M0 0h24v24H0z' />,\n <circle cx={12} cy={12} r={9} stroke='currentColor' strokeWidth={2} />,\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='m9 9 6 6m0-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 IconCross: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n { ...props, size, viewBox: '0 0 24 24', fill: 'none', ref: forwardRef },\n <path d='M0 0h24v24H0z' />,\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 { ...props, size, viewBox: '0 0 24 24', fill: 'none', ref: forwardRef },\n <path d='M0 0h24v24H0z' />,\n <rect\n width={18}\n height={14}\n x={3}\n y={5}\n stroke='currentColor'\n strokeWidth={2}\n rx={2}\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 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 IconExclamationPointCircle: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n { ...props, size, viewBox: '0 0 24 24', fill: 'none', ref: forwardRef },\n <path d='M0 0h24v24H0z' />,\n <circle cx={12} cy={12} r={9} stroke='currentColor' strokeWidth={2} />,\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M12 7v6m0 3.5v.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 IconGlobe: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n { ...props, size, viewBox: '0 0 24 24', fill: 'none', ref: forwardRef },\n <path d='M0 0h24v24H0z' />,\n <circle cx={12} cy={12} r={9} stroke='currentColor' strokeWidth={2} />,\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 15h16'\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 IconIconPlaceholder: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n { ...props, size, viewBox: '0 0 24 24', fill: 'none', ref: forwardRef },\n <path d='M0 0h24v24H0z' />,\n <circle cx={12} cy={12} r={9} stroke='currentColor' strokeWidth={2} />,\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='m3 3 18 18m0-18L3 21'\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 { ...props, size, viewBox: '0 0 24 24', fill: 'none', ref: forwardRef },\n <path d='M0 0h24v24H0z' />,\n <circle cx={12} cy={12} r={9} stroke='currentColor' strokeWidth={2} />,\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='M12 6.5V7m0 4v6'\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 { ...props, size, viewBox: '0 0 24 24', fill: 'none', ref: forwardRef },\n <path d='M0 0h24v24H0z' />,\n <circle cx={12} cy={16} r={1} fill='currentColor' />,\n <rect\n width={14}\n height={10}\n x={5}\n y={11}\n stroke='currentColor'\n strokeWidth={2}\n rx={2}\n />,\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 2v6'\n />,\n <circle cx={12} cy={16} r={1} stroke='currentColor' strokeWidth={2} />\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 { ...props, size, viewBox: '0 0 24 24', fill: 'none', ref: forwardRef },\n <path d='M0 0h24v24H0z' />,\n <circle cx={12} cy={16} r={1} fill='currentColor' />,\n <rect\n width={14}\n height={10}\n x={5}\n y={11}\n stroke='currentColor'\n strokeWidth={2}\n rx={2}\n />,\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.5'\n />,\n <circle cx={12} cy={16} r={1} stroke='currentColor' strokeWidth={2} />\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 { ...props, size, viewBox: '0 0 24 24', fill: 'none', ref: forwardRef },\n <path d='M0 0h24v24H0z' />,\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 IconPlus: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n { ...props, size, viewBox: '0 0 24 24', fill: 'none', ref: forwardRef },\n <path d='M0 0h24v24H0z' />,\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 IconQuestionMark: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n { ...props, size, viewBox: '0 0 24 24', fill: 'none', ref: forwardRef },\n <path d='M0 0h24v24H0z' />,\n <circle cx={12} cy={12} r={9} stroke='currentColor' strokeWidth={2} />,\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.1'\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 IconSearch: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n { ...props, size, viewBox: '0 0 24 24', fill: 'none', ref: forwardRef },\n <path d='M0 0h24v24H0z' />,\n <circle cx={10} cy={10} r={6} stroke='currentColor' strokeWidth={2} />,\n <path\n stroke='currentColor'\n strokeLinecap='round'\n strokeWidth={2}\n d='m20 20-5.5-5.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 IconSocialFacebook: ForwardRefExoticComponent<\n IconProps & RefAttributes<SVGSVGElement>\n> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>\n createElement(\n StyledIcon,\n { ...props, size, viewBox: '0 0 24 24', fill: 'none', ref: forwardRef },\n <path d='M0 0h24v24H0z' />,\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 { ...props, size, viewBox: '0 0 24 24', fill: 'none', ref: forwardRef },\n <path d='M0 0h24v24H0z' />,\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 { ...props, size, viewBox: '0 0 24 24', fill: 'none', ref: forwardRef },\n <path d='M0 0h24v24H0z' />,\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 { ...props, size, viewBox: '0 0 24 24', fill: 'none', ref: forwardRef },\n <path d='M0 0h24v24H0z' />,\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 { ...props, size, viewBox: '0 0 24 24', fill: 'none', ref: forwardRef },\n <path d='M0 0h24v24H0z' />,\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"],"names":["styled","Primitive","mapKeysToVariants","theme","forwardRef","createElement","React"],"mappings":"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"}
package/dist/module.js ADDED
@@ -0,0 +1,557 @@
1
+ import React, { forwardRef, createElement } from 'react';
2
+ import { styled, theme } from '@mirohq/design-system-stitches';
3
+ import { Primitive } from '@mirohq/design-system-primitive';
4
+ import { mapKeysToVariants } from '@mirohq/design-system-utils';
5
+
6
+ const StyledIcon = styled(Primitive.svg, {
7
+ display: "inline-flex",
8
+ verticalAlign: "text-bottom",
9
+ forcedColorAdjust: "preserve-parent-color",
10
+ variants: {
11
+ size: {
12
+ small: {
13
+ width: "$icon-200"
14
+ },
15
+ medium: {
16
+ width: "$icon-300"
17
+ },
18
+ large: {
19
+ width: "$icon-400"
20
+ }
21
+ },
22
+ color: mapKeysToVariants(theme.colors, "color")
23
+ }
24
+ });
25
+
26
+ const IconArrowLeft = forwardRef(
27
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
28
+ StyledIcon,
29
+ { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
30
+ /* @__PURE__ */ React.createElement("path", {
31
+ d: "M0 0h23.59v24H0z"
32
+ }),
33
+ /* @__PURE__ */ React.createElement("path", {
34
+ stroke: "currentColor",
35
+ strokeLinecap: "round",
36
+ strokeWidth: 2,
37
+ d: "M20.59 12h-17M10 5l-7 7 7 7"
38
+ })
39
+ )
40
+ );
41
+
42
+ const IconArrowRight = forwardRef(
43
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
44
+ StyledIcon,
45
+ { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
46
+ /* @__PURE__ */ React.createElement("path", {
47
+ d: "M0 0h24v24H0z"
48
+ }),
49
+ /* @__PURE__ */ React.createElement("path", {
50
+ stroke: "currentColor",
51
+ strokeLinecap: "round",
52
+ strokeWidth: 2,
53
+ d: "M20 12H3m10.59-7 7 7-7 7"
54
+ })
55
+ )
56
+ );
57
+
58
+ const IconArrowTopRight = forwardRef(
59
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
60
+ StyledIcon,
61
+ { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
62
+ /* @__PURE__ */ React.createElement("path", {
63
+ d: "M0 0h24v24H0z"
64
+ }),
65
+ /* @__PURE__ */ React.createElement("path", {
66
+ stroke: "currentColor",
67
+ strokeLinecap: "round",
68
+ strokeWidth: 2,
69
+ d: "M10 5h9v9m0-9L5 19"
70
+ })
71
+ )
72
+ );
73
+
74
+ const IconBarThree = forwardRef(
75
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
76
+ StyledIcon,
77
+ { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
78
+ /* @__PURE__ */ React.createElement("path", {
79
+ d: "M0 0h24v24H0z"
80
+ }),
81
+ /* @__PURE__ */ React.createElement("path", {
82
+ stroke: "currentColor",
83
+ strokeLinecap: "round",
84
+ strokeWidth: 2,
85
+ d: "M21 5H3m18 7H3m18 7H3"
86
+ })
87
+ )
88
+ );
89
+
90
+ const IconCheckMark = forwardRef(
91
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
92
+ StyledIcon,
93
+ { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
94
+ /* @__PURE__ */ React.createElement("path", {
95
+ d: "M0 0h24v24H0z"
96
+ }),
97
+ /* @__PURE__ */ React.createElement("path", {
98
+ stroke: "currentColor",
99
+ strokeLinecap: "round",
100
+ strokeWidth: 2,
101
+ d: "m5 11 5 5 9-9"
102
+ })
103
+ )
104
+ );
105
+
106
+ const IconChevronDown = forwardRef(
107
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
108
+ StyledIcon,
109
+ { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
110
+ /* @__PURE__ */ React.createElement("path", {
111
+ d: "M0 0h24v24H0z"
112
+ }),
113
+ /* @__PURE__ */ React.createElement("path", {
114
+ stroke: "currentColor",
115
+ strokeLinecap: "round",
116
+ strokeWidth: 2,
117
+ d: "m6 9.5 6 6 6-6"
118
+ })
119
+ )
120
+ );
121
+
122
+ const IconChevronLeft = forwardRef(
123
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
124
+ StyledIcon,
125
+ { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
126
+ /* @__PURE__ */ React.createElement("path", {
127
+ d: "M0 0h24v24H0z"
128
+ }),
129
+ /* @__PURE__ */ React.createElement("path", {
130
+ stroke: "currentColor",
131
+ strokeLinecap: "round",
132
+ strokeWidth: 2,
133
+ d: "m14.5 6-6 6 6 6"
134
+ })
135
+ )
136
+ );
137
+
138
+ const IconChevronRight = forwardRef(
139
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
140
+ StyledIcon,
141
+ { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
142
+ /* @__PURE__ */ React.createElement("path", {
143
+ d: "M0 0h24v24H0z"
144
+ }),
145
+ /* @__PURE__ */ React.createElement("path", {
146
+ stroke: "currentColor",
147
+ strokeLinecap: "round",
148
+ strokeWidth: 2,
149
+ d: "m9.5 6 6 6-6 6"
150
+ })
151
+ )
152
+ );
153
+
154
+ const IconChevronUp = forwardRef(
155
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
156
+ StyledIcon,
157
+ { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
158
+ /* @__PURE__ */ React.createElement("path", {
159
+ d: "M0 0h24v24H0z"
160
+ }),
161
+ /* @__PURE__ */ React.createElement("path", {
162
+ stroke: "currentColor",
163
+ strokeLinecap: "round",
164
+ strokeWidth: 2,
165
+ d: "m6 14.5 6-6 6 6"
166
+ })
167
+ )
168
+ );
169
+
170
+ const IconCrossCircle = forwardRef(
171
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
172
+ StyledIcon,
173
+ { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
174
+ /* @__PURE__ */ React.createElement("path", {
175
+ d: "M0 0h24v24H0z"
176
+ }),
177
+ /* @__PURE__ */ React.createElement("circle", {
178
+ cx: 12,
179
+ cy: 12,
180
+ r: 9,
181
+ stroke: "currentColor",
182
+ strokeWidth: 2
183
+ }),
184
+ /* @__PURE__ */ React.createElement("path", {
185
+ stroke: "currentColor",
186
+ strokeLinecap: "round",
187
+ strokeWidth: 2,
188
+ d: "m9 9 6 6m0-6-6 6"
189
+ })
190
+ )
191
+ );
192
+
193
+ const IconCross = forwardRef(
194
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
195
+ StyledIcon,
196
+ { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
197
+ /* @__PURE__ */ React.createElement("path", {
198
+ d: "M0 0h24v24H0z"
199
+ }),
200
+ /* @__PURE__ */ React.createElement("path", {
201
+ stroke: "currentColor",
202
+ strokeLinecap: "round",
203
+ strokeWidth: 2,
204
+ d: "m6 6 12 12m0-12L6 18"
205
+ })
206
+ )
207
+ );
208
+
209
+ const IconEnvelope = forwardRef(
210
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
211
+ StyledIcon,
212
+ { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
213
+ /* @__PURE__ */ React.createElement("path", {
214
+ d: "M0 0h24v24H0z"
215
+ }),
216
+ /* @__PURE__ */ React.createElement("rect", {
217
+ width: 18,
218
+ height: 14,
219
+ x: 3,
220
+ y: 5,
221
+ stroke: "currentColor",
222
+ strokeWidth: 2,
223
+ rx: 2
224
+ }),
225
+ /* @__PURE__ */ React.createElement("path", {
226
+ stroke: "currentColor",
227
+ strokeLinecap: "round",
228
+ strokeWidth: 2,
229
+ d: "m7 9 3.618 3.459a2 2 0 0 0 2.764 0L17 9"
230
+ })
231
+ )
232
+ );
233
+
234
+ const IconExclamationPointCircle = forwardRef(
235
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
236
+ StyledIcon,
237
+ { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
238
+ /* @__PURE__ */ React.createElement("path", {
239
+ d: "M0 0h24v24H0z"
240
+ }),
241
+ /* @__PURE__ */ React.createElement("circle", {
242
+ cx: 12,
243
+ cy: 12,
244
+ r: 9,
245
+ stroke: "currentColor",
246
+ strokeWidth: 2
247
+ }),
248
+ /* @__PURE__ */ React.createElement("path", {
249
+ stroke: "currentColor",
250
+ strokeLinecap: "round",
251
+ strokeWidth: 2,
252
+ d: "M12 7v6m0 3.5v.5"
253
+ })
254
+ )
255
+ );
256
+
257
+ const IconGlobe = forwardRef(
258
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
259
+ StyledIcon,
260
+ { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
261
+ /* @__PURE__ */ React.createElement("path", {
262
+ d: "M0 0h24v24H0z"
263
+ }),
264
+ /* @__PURE__ */ React.createElement("circle", {
265
+ cx: 12,
266
+ cy: 12,
267
+ r: 9,
268
+ stroke: "currentColor",
269
+ strokeWidth: 2
270
+ }),
271
+ /* @__PURE__ */ React.createElement("path", {
272
+ stroke: "currentColor",
273
+ strokeLinecap: "round",
274
+ strokeWidth: 2,
275
+ 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 15h16"
276
+ })
277
+ )
278
+ );
279
+
280
+ const IconIconPlaceholder = forwardRef(
281
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
282
+ StyledIcon,
283
+ { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
284
+ /* @__PURE__ */ React.createElement("path", {
285
+ d: "M0 0h24v24H0z"
286
+ }),
287
+ /* @__PURE__ */ React.createElement("circle", {
288
+ cx: 12,
289
+ cy: 12,
290
+ r: 9,
291
+ stroke: "currentColor",
292
+ strokeWidth: 2
293
+ }),
294
+ /* @__PURE__ */ React.createElement("path", {
295
+ stroke: "currentColor",
296
+ strokeLinecap: "round",
297
+ strokeWidth: 2,
298
+ d: "m3 3 18 18m0-18L3 21"
299
+ })
300
+ )
301
+ );
302
+
303
+ const IconInformationMarkCircle = forwardRef(
304
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
305
+ StyledIcon,
306
+ { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
307
+ /* @__PURE__ */ React.createElement("path", {
308
+ d: "M0 0h24v24H0z"
309
+ }),
310
+ /* @__PURE__ */ React.createElement("circle", {
311
+ cx: 12,
312
+ cy: 12,
313
+ r: 9,
314
+ stroke: "currentColor",
315
+ strokeWidth: 2
316
+ }),
317
+ /* @__PURE__ */ React.createElement("path", {
318
+ stroke: "currentColor",
319
+ strokeLinecap: "round",
320
+ strokeWidth: 2,
321
+ d: "M12 6.5V7m0 4v6"
322
+ })
323
+ )
324
+ );
325
+
326
+ const IconLockClosed = forwardRef(
327
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
328
+ StyledIcon,
329
+ { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
330
+ /* @__PURE__ */ React.createElement("path", {
331
+ d: "M0 0h24v24H0z"
332
+ }),
333
+ /* @__PURE__ */ React.createElement("circle", {
334
+ cx: 12,
335
+ cy: 16,
336
+ r: 1,
337
+ fill: "currentColor"
338
+ }),
339
+ /* @__PURE__ */ React.createElement("rect", {
340
+ width: 14,
341
+ height: 10,
342
+ x: 5,
343
+ y: 11,
344
+ stroke: "currentColor",
345
+ strokeWidth: 2,
346
+ rx: 2
347
+ }),
348
+ /* @__PURE__ */ React.createElement("path", {
349
+ stroke: "currentColor",
350
+ strokeLinecap: "round",
351
+ strokeWidth: 2,
352
+ d: "M16.5 11V5a2 2 0 0 0-2-2h-5a2 2 0 0 0-2 2v6"
353
+ }),
354
+ /* @__PURE__ */ React.createElement("circle", {
355
+ cx: 12,
356
+ cy: 16,
357
+ r: 1,
358
+ stroke: "currentColor",
359
+ strokeWidth: 2
360
+ })
361
+ )
362
+ );
363
+
364
+ const IconLockOpen = forwardRef(
365
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
366
+ StyledIcon,
367
+ { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
368
+ /* @__PURE__ */ React.createElement("path", {
369
+ d: "M0 0h24v24H0z"
370
+ }),
371
+ /* @__PURE__ */ React.createElement("circle", {
372
+ cx: 12,
373
+ cy: 16,
374
+ r: 1,
375
+ fill: "currentColor"
376
+ }),
377
+ /* @__PURE__ */ React.createElement("rect", {
378
+ width: 14,
379
+ height: 10,
380
+ x: 5,
381
+ y: 11,
382
+ stroke: "currentColor",
383
+ strokeWidth: 2,
384
+ rx: 2
385
+ }),
386
+ /* @__PURE__ */ React.createElement("path", {
387
+ stroke: "currentColor",
388
+ strokeLinecap: "round",
389
+ strokeWidth: 2,
390
+ d: "M16.5 11V5a2 2 0 0 0-2-2h-5a2 2 0 0 0-2 2v1.5"
391
+ }),
392
+ /* @__PURE__ */ React.createElement("circle", {
393
+ cx: 12,
394
+ cy: 16,
395
+ r: 1,
396
+ stroke: "currentColor",
397
+ strokeWidth: 2
398
+ })
399
+ )
400
+ );
401
+
402
+ const IconMinus = forwardRef(
403
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
404
+ StyledIcon,
405
+ { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
406
+ /* @__PURE__ */ React.createElement("path", {
407
+ d: "M0 0h24v24H0z"
408
+ }),
409
+ /* @__PURE__ */ React.createElement("path", {
410
+ stroke: "currentColor",
411
+ strokeLinecap: "round",
412
+ strokeWidth: 2,
413
+ d: "M5 12h14"
414
+ })
415
+ )
416
+ );
417
+
418
+ const IconPlus = forwardRef(
419
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
420
+ StyledIcon,
421
+ { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
422
+ /* @__PURE__ */ React.createElement("path", {
423
+ d: "M0 0h24v24H0z"
424
+ }),
425
+ /* @__PURE__ */ React.createElement("path", {
426
+ stroke: "currentColor",
427
+ strokeLinecap: "round",
428
+ strokeWidth: 2,
429
+ d: "M5 12h14m-7-7v14"
430
+ })
431
+ )
432
+ );
433
+
434
+ const IconQuestionMark = forwardRef(
435
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
436
+ StyledIcon,
437
+ { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
438
+ /* @__PURE__ */ React.createElement("path", {
439
+ d: "M0 0h24v24H0z"
440
+ }),
441
+ /* @__PURE__ */ React.createElement("circle", {
442
+ cx: 12,
443
+ cy: 12,
444
+ r: 9,
445
+ stroke: "currentColor",
446
+ strokeWidth: 2
447
+ }),
448
+ /* @__PURE__ */ React.createElement("path", {
449
+ stroke: "currentColor",
450
+ strokeLinecap: "round",
451
+ strokeWidth: 2,
452
+ d: "M9.17 9a3.001 3.001 0 1 1 3.812 3.836c-.522.18-.982.612-.982 1.164v.25m0 2.65v.1"
453
+ })
454
+ )
455
+ );
456
+
457
+ const IconSearch = forwardRef(
458
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
459
+ StyledIcon,
460
+ { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
461
+ /* @__PURE__ */ React.createElement("path", {
462
+ d: "M0 0h24v24H0z"
463
+ }),
464
+ /* @__PURE__ */ React.createElement("circle", {
465
+ cx: 10,
466
+ cy: 10,
467
+ r: 6,
468
+ stroke: "currentColor",
469
+ strokeWidth: 2
470
+ }),
471
+ /* @__PURE__ */ React.createElement("path", {
472
+ stroke: "currentColor",
473
+ strokeLinecap: "round",
474
+ strokeWidth: 2,
475
+ d: "m20 20-5.5-5.5"
476
+ })
477
+ )
478
+ );
479
+
480
+ const IconSocialFacebook = forwardRef(
481
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
482
+ StyledIcon,
483
+ { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
484
+ /* @__PURE__ */ React.createElement("path", {
485
+ d: "M0 0h24v24H0z"
486
+ }),
487
+ /* @__PURE__ */ React.createElement("path", {
488
+ fill: "currentColor",
489
+ 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"
490
+ })
491
+ )
492
+ );
493
+
494
+ const IconSocialInstagram = forwardRef(
495
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
496
+ StyledIcon,
497
+ { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
498
+ /* @__PURE__ */ React.createElement("path", {
499
+ d: "M0 0h24v24H0z"
500
+ }),
501
+ /* @__PURE__ */ React.createElement("path", {
502
+ fill: "currentColor",
503
+ d: "M8.667 12a3.333 3.333 0 1 0 6.666 0 3.333 3.333 0 0 0-6.666 0Z"
504
+ }),
505
+ /* @__PURE__ */ React.createElement("path", {
506
+ fill: "currentColor",
507
+ fillRule: "evenodd",
508
+ 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",
509
+ clipRule: "evenodd"
510
+ })
511
+ )
512
+ );
513
+
514
+ const IconSocialLinkedin = forwardRef(
515
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
516
+ StyledIcon,
517
+ { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
518
+ /* @__PURE__ */ React.createElement("path", {
519
+ d: "M0 0h24v24H0z"
520
+ }),
521
+ /* @__PURE__ */ React.createElement("path", {
522
+ fill: "currentColor",
523
+ 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"
524
+ })
525
+ )
526
+ );
527
+
528
+ const IconSocialTwitter = forwardRef(
529
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
530
+ StyledIcon,
531
+ { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
532
+ /* @__PURE__ */ React.createElement("path", {
533
+ d: "M0 0h24v24H0z"
534
+ }),
535
+ /* @__PURE__ */ React.createElement("path", {
536
+ fill: "currentColor",
537
+ 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"
538
+ })
539
+ )
540
+ );
541
+
542
+ const IconSocialYoutube = forwardRef(
543
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
544
+ StyledIcon,
545
+ { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
546
+ /* @__PURE__ */ React.createElement("path", {
547
+ d: "M0 0h24v24H0z"
548
+ }),
549
+ /* @__PURE__ */ React.createElement("path", {
550
+ fill: "currentColor",
551
+ 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"
552
+ })
553
+ )
554
+ );
555
+
556
+ export { IconArrowLeft, IconArrowRight, IconArrowTopRight, IconBarThree, IconCheckMark, IconChevronDown, IconChevronLeft, IconChevronRight, IconChevronUp, IconCross, IconCrossCircle, IconEnvelope, IconExclamationPointCircle, IconGlobe, IconIconPlaceholder, IconInformationMarkCircle, IconLockClosed, IconLockOpen, IconMinus, IconPlus, IconQuestionMark, IconSearch, IconSocialFacebook, IconSocialInstagram, IconSocialLinkedin, IconSocialTwitter, IconSocialYoutube };
557
+ //# sourceMappingURL=module.js.map