@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.
- package/README.md +52 -0
- package/dist/main.js +591 -0
- package/dist/main.js.map +1 -0
- package/dist/module.js +557 -0
- package/dist/module.js.map +1 -0
- package/dist/types.d.ts +426 -0
- package/package.json +57 -0
- package/react/arrow-left.tsx +21 -0
- package/react/arrow-right.tsx +21 -0
- package/react/arrow-top-right.tsx +21 -0
- package/react/bar-three.tsx +21 -0
- package/react/check-mark.tsx +21 -0
- package/react/chevron-down.tsx +21 -0
- package/react/chevron-left.tsx +21 -0
- package/react/chevron-right.tsx +21 -0
- package/react/chevron-up.tsx +21 -0
- package/react/cross-circle.tsx +22 -0
- package/react/cross.tsx +21 -0
- package/react/envelope.tsx +30 -0
- package/react/exclamation-point-circle.tsx +22 -0
- package/react/globe.tsx +22 -0
- package/react/icon-placeholder.tsx +22 -0
- package/react/index.ts +27 -0
- package/react/information-mark-circle.tsx +22 -0
- package/react/lock-closed.tsx +32 -0
- package/react/lock-open.tsx +32 -0
- package/react/minus.tsx +21 -0
- package/react/plus.tsx +21 -0
- package/react/question-mark.tsx +22 -0
- package/react/search.tsx +22 -0
- package/react/social-facebook.tsx +19 -0
- package/react/social-instagram.tsx +25 -0
- package/react/social-linkedin.tsx +19 -0
- package/react/social-twitter.tsx +19 -0
- package/react/social-youtube.tsx +19 -0
- package/svg/24/arrow-left.svg +1 -0
- package/svg/24/arrow-right.svg +1 -0
- package/svg/24/arrow-top-right.svg +1 -0
- package/svg/24/bar-three.svg +1 -0
- package/svg/24/check-mark.svg +1 -0
- package/svg/24/chevron-down.svg +1 -0
- package/svg/24/chevron-left.svg +1 -0
- package/svg/24/chevron-right.svg +1 -0
- package/svg/24/chevron-up.svg +1 -0
- package/svg/24/cross-circle.svg +1 -0
- package/svg/24/cross.svg +1 -0
- package/svg/24/envelope.svg +1 -0
- package/svg/24/exclamation-point-circle.svg +1 -0
- package/svg/24/globe.svg +1 -0
- package/svg/24/icon-placeholder.svg +1 -0
- package/svg/24/information-mark-circle.svg +1 -0
- package/svg/24/lock-closed.svg +1 -0
- package/svg/24/lock-open.svg +1 -0
- package/svg/24/minus.svg +1 -0
- package/svg/24/plus.svg +1 -0
- package/svg/24/question-mark.svg +1 -0
- package/svg/24/search.svg +1 -0
- package/svg/24/social-facebook.svg +1 -0
- package/svg/24/social-instagram.svg +1 -0
- package/svg/24/social-linkedin.svg +1 -0
- package/svg/24/social-twitter.svg +1 -0
- package/svg/24/social-youtube.svg +1 -0
- package/svg/meta.json +150 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"module.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":["forwardRef"],"mappings":"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"}
|
package/dist/types.d.ts
ADDED
|
@@ -0,0 +1,426 @@
|
|
|
1
|
+
import * as react from 'react';
|
|
2
|
+
import { ComponentPropsWithRef, ForwardRefExoticComponent, RefAttributes } from 'react';
|
|
3
|
+
import * as _mirohq_design_system_stitches from '@mirohq/design-system-stitches';
|
|
4
|
+
import * as _stitches_react_types_css_util from '@stitches/react/types/css-util';
|
|
5
|
+
import * as _mirohq_design_system_primitive from '@mirohq/design-system-primitive';
|
|
6
|
+
import * as _stitches_react_types_styled_component from '@stitches/react/types/styled-component';
|
|
7
|
+
|
|
8
|
+
declare const StyledIcon: react.ForwardRefExoticComponent<Pick<Omit<{
|
|
9
|
+
size?: "small" | "medium" | "large" | undefined;
|
|
10
|
+
color?: "background-cta-active" | "background-cta-disabled" | "background-cta-hover" | "background-cta-idle" | "background-danger-active" | "background-danger-hover" | "background-danger-idle" | "background-default-active" | "background-default-disabled" | "background-default-hover" | "background-default-idle" | "background-default-selected" | "background-default-selected-active" | "background-info-idle" | "background-primary" | "background-secondary" | "background-success-idle" | "background-warning-idle" | "border-cta-idle" | "border-default-active" | "border-default-error" | "border-default-hover" | "border-default-idle" | "border-default-selected" | "canvas-primary" | "divider-default" | "focus-ring-default" | "font-cta-idle" | "font-default-active" | "font-default-disabled" | "font-default-error" | "font-default-hover" | "font-default-idle" | "font-default-selected" | "font-default-visited" | "font-primary" | "font-secondary" | "font-tertiary" | "icon-cta-idle" | "icon-default" | "icon-default-active" | "icon-default-disabled" | "icon-default-error" | "icon-default-hover" | "icon-default-idle" | "icon-default-selected" | "black" | "blue-10" | "blue-20" | "blue-50" | "blue-60" | "blue-70" | "blue-80" | "gray-20" | "gray-30" | "green-70" | "indigo-20" | "indigo-30" | "indigo-50" | "indigo-70" | "indigo-90" | "pink-20" | "pink-50" | "red-10" | "red-20" | "red-30" | "red-50" | "red-60" | "transparent" | "white" | "yellow-20" | "yellow-60" | undefined;
|
|
11
|
+
}, "color" | "size"> & _stitches_react_types_styled_component.TransformProps<{
|
|
12
|
+
size?: "small" | "medium" | "large" | undefined;
|
|
13
|
+
color?: "background-cta-active" | "background-cta-disabled" | "background-cta-hover" | "background-cta-idle" | "background-danger-active" | "background-danger-hover" | "background-danger-idle" | "background-default-active" | "background-default-disabled" | "background-default-hover" | "background-default-idle" | "background-default-selected" | "background-default-selected-active" | "background-info-idle" | "background-primary" | "background-secondary" | "background-success-idle" | "background-warning-idle" | "border-cta-idle" | "border-default-active" | "border-default-error" | "border-default-hover" | "border-default-idle" | "border-default-selected" | "canvas-primary" | "divider-default" | "focus-ring-default" | "font-cta-idle" | "font-default-active" | "font-default-disabled" | "font-default-error" | "font-default-hover" | "font-default-idle" | "font-default-selected" | "font-default-visited" | "font-primary" | "font-secondary" | "font-tertiary" | "icon-cta-idle" | "icon-default" | "icon-default-active" | "icon-default-disabled" | "icon-default-error" | "icon-default-hover" | "icon-default-idle" | "icon-default-selected" | "black" | "blue-10" | "blue-20" | "blue-50" | "blue-60" | "blue-70" | "blue-80" | "gray-20" | "gray-30" | "green-70" | "indigo-20" | "indigo-30" | "indigo-50" | "indigo-70" | "indigo-90" | "pink-20" | "pink-50" | "red-10" | "red-20" | "red-30" | "red-50" | "red-60" | "transparent" | "white" | "yellow-20" | "yellow-60" | undefined;
|
|
14
|
+
}, {}> & _mirohq_design_system_stitches.StyledComponentProps<_stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<_mirohq_design_system_primitive.PrimitiveProps<"svg">>, {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
15
|
+
'border-widths': {
|
|
16
|
+
readonly none: 0;
|
|
17
|
+
readonly sm: "1px";
|
|
18
|
+
readonly md: "2px";
|
|
19
|
+
readonly lg: "4px";
|
|
20
|
+
};
|
|
21
|
+
colors: {
|
|
22
|
+
readonly black: any;
|
|
23
|
+
readonly 'blue-10': any;
|
|
24
|
+
readonly 'blue-20': any;
|
|
25
|
+
readonly 'blue-50': any;
|
|
26
|
+
readonly 'blue-60': any;
|
|
27
|
+
readonly 'blue-70': any;
|
|
28
|
+
readonly 'blue-80': any;
|
|
29
|
+
readonly 'gray-20': any;
|
|
30
|
+
readonly 'gray-30': any;
|
|
31
|
+
readonly 'green-70': any;
|
|
32
|
+
readonly 'indigo-20': any;
|
|
33
|
+
readonly 'indigo-30': any;
|
|
34
|
+
readonly 'indigo-50': any;
|
|
35
|
+
readonly 'indigo-70': any;
|
|
36
|
+
readonly 'indigo-90': any;
|
|
37
|
+
readonly 'pink-20': any;
|
|
38
|
+
readonly 'pink-50': any;
|
|
39
|
+
readonly 'red-10': any;
|
|
40
|
+
readonly 'red-20': any;
|
|
41
|
+
readonly 'red-30': any;
|
|
42
|
+
readonly 'red-50': any;
|
|
43
|
+
readonly 'red-60': any;
|
|
44
|
+
readonly transparent: any;
|
|
45
|
+
readonly white: any;
|
|
46
|
+
readonly 'yellow-20': any;
|
|
47
|
+
readonly 'yellow-60': any;
|
|
48
|
+
readonly 'background-cta-active'?: any;
|
|
49
|
+
readonly 'background-cta-disabled'?: any;
|
|
50
|
+
readonly 'background-cta-hover'?: any;
|
|
51
|
+
readonly 'background-cta-idle'?: any;
|
|
52
|
+
readonly 'background-danger-active'?: any;
|
|
53
|
+
readonly 'background-danger-hover'?: any;
|
|
54
|
+
readonly 'background-danger-idle'?: any;
|
|
55
|
+
readonly 'background-default-active'?: any;
|
|
56
|
+
readonly 'background-default-disabled'?: any;
|
|
57
|
+
readonly 'background-default-hover'?: any;
|
|
58
|
+
readonly 'background-default-idle'?: any;
|
|
59
|
+
readonly 'background-default-selected'?: any;
|
|
60
|
+
readonly 'background-default-selected-active'?: any;
|
|
61
|
+
readonly 'background-info-idle'?: any;
|
|
62
|
+
readonly 'background-primary'?: any;
|
|
63
|
+
readonly 'background-secondary'?: any;
|
|
64
|
+
readonly 'background-success-idle'?: any;
|
|
65
|
+
readonly 'background-warning-idle'?: any;
|
|
66
|
+
readonly 'border-cta-idle'?: any;
|
|
67
|
+
readonly 'border-default-active'?: any;
|
|
68
|
+
readonly 'border-default-error'?: any;
|
|
69
|
+
readonly 'border-default-hover'?: any;
|
|
70
|
+
readonly 'border-default-idle'?: any;
|
|
71
|
+
readonly 'border-default-selected'?: any;
|
|
72
|
+
readonly 'canvas-primary'?: any;
|
|
73
|
+
readonly 'divider-default'?: any;
|
|
74
|
+
readonly 'focus-ring-default'?: any;
|
|
75
|
+
readonly 'font-cta-idle'?: any;
|
|
76
|
+
readonly 'font-default-active'?: any;
|
|
77
|
+
readonly 'font-default-disabled'?: any;
|
|
78
|
+
readonly 'font-default-error'?: any;
|
|
79
|
+
readonly 'font-default-hover'?: any;
|
|
80
|
+
readonly 'font-default-idle'?: any;
|
|
81
|
+
readonly 'font-default-selected'?: any;
|
|
82
|
+
readonly 'font-default-visited'?: any;
|
|
83
|
+
readonly 'font-primary'?: any;
|
|
84
|
+
readonly 'font-secondary'?: any;
|
|
85
|
+
readonly 'font-tertiary'?: any;
|
|
86
|
+
readonly 'icon-cta-idle'?: any;
|
|
87
|
+
readonly 'icon-default'?: any;
|
|
88
|
+
readonly 'icon-default-active'?: any;
|
|
89
|
+
readonly 'icon-default-disabled'?: any;
|
|
90
|
+
readonly 'icon-default-error'?: any;
|
|
91
|
+
readonly 'icon-default-hover'?: any;
|
|
92
|
+
readonly 'icon-default-idle'?: any;
|
|
93
|
+
readonly 'icon-default-selected'?: any;
|
|
94
|
+
};
|
|
95
|
+
'font-sizes': {
|
|
96
|
+
readonly 150: "0.75rem";
|
|
97
|
+
readonly 175: "0.875rem";
|
|
98
|
+
readonly 200: "1rem";
|
|
99
|
+
readonly 225: "1.125rem";
|
|
100
|
+
readonly 250: "1.25rem";
|
|
101
|
+
readonly 300: "1.5rem";
|
|
102
|
+
readonly 400: "2rem";
|
|
103
|
+
readonly 500: "2.5rem";
|
|
104
|
+
readonly 600: "3rem";
|
|
105
|
+
readonly 800: "4rem";
|
|
106
|
+
readonly 900: "4.5rem";
|
|
107
|
+
};
|
|
108
|
+
radii: {
|
|
109
|
+
readonly none: 0;
|
|
110
|
+
readonly half: "999em";
|
|
111
|
+
readonly 25: "2px";
|
|
112
|
+
readonly 50: "4px";
|
|
113
|
+
readonly 75: "6px";
|
|
114
|
+
readonly 100: "8px";
|
|
115
|
+
readonly 200: "16px";
|
|
116
|
+
};
|
|
117
|
+
shadows: {
|
|
118
|
+
readonly 50: "0 4px 16px #05003812";
|
|
119
|
+
readonly 100: "0 8px 32px #05003808";
|
|
120
|
+
};
|
|
121
|
+
sizes: {
|
|
122
|
+
readonly number: string;
|
|
123
|
+
readonly 'icon-200': "16px";
|
|
124
|
+
readonly 'icon-300': "24px";
|
|
125
|
+
readonly 'icon-400': "32px";
|
|
126
|
+
};
|
|
127
|
+
space: {
|
|
128
|
+
readonly none: 0;
|
|
129
|
+
readonly 50: "4px";
|
|
130
|
+
readonly 100: "8px";
|
|
131
|
+
readonly 150: "12px";
|
|
132
|
+
readonly 200: "16px";
|
|
133
|
+
readonly 300: "24px";
|
|
134
|
+
readonly 400: "32px";
|
|
135
|
+
readonly 500: "64px";
|
|
136
|
+
readonly 600: "48px";
|
|
137
|
+
readonly 800: "64px";
|
|
138
|
+
readonly 1200: "96px";
|
|
139
|
+
readonly 1600: "128px";
|
|
140
|
+
};
|
|
141
|
+
'space-gap': {
|
|
142
|
+
readonly none: any;
|
|
143
|
+
readonly 50: any;
|
|
144
|
+
readonly 100: any;
|
|
145
|
+
readonly 200: any;
|
|
146
|
+
readonly 300: any;
|
|
147
|
+
};
|
|
148
|
+
'space-inset': {
|
|
149
|
+
readonly none: any;
|
|
150
|
+
readonly 50: any;
|
|
151
|
+
readonly 100: any;
|
|
152
|
+
readonly 150: any;
|
|
153
|
+
readonly 200: any;
|
|
154
|
+
readonly 300: any;
|
|
155
|
+
readonly 400: any;
|
|
156
|
+
readonly 600: any;
|
|
157
|
+
readonly 800: any;
|
|
158
|
+
readonly 1200: any;
|
|
159
|
+
readonly 1600: any;
|
|
160
|
+
};
|
|
161
|
+
'space-offset': {
|
|
162
|
+
readonly none: any;
|
|
163
|
+
readonly 50: any;
|
|
164
|
+
readonly 100: any;
|
|
165
|
+
readonly 150: any;
|
|
166
|
+
readonly 200: any;
|
|
167
|
+
readonly 300: any;
|
|
168
|
+
readonly 400: any;
|
|
169
|
+
readonly 600: any;
|
|
170
|
+
readonly 800: any;
|
|
171
|
+
readonly 1200: any;
|
|
172
|
+
readonly 1600: any;
|
|
173
|
+
readonly 'stacking-none': any;
|
|
174
|
+
readonly 'stacking-100': any;
|
|
175
|
+
readonly 'stacking-200': any;
|
|
176
|
+
readonly 'stacking-300': any;
|
|
177
|
+
readonly 'stacking-400': any;
|
|
178
|
+
readonly 'stacking-500': any;
|
|
179
|
+
readonly 'stacking-800': any;
|
|
180
|
+
};
|
|
181
|
+
'z-indices': {
|
|
182
|
+
readonly dropdownMenu: 100;
|
|
183
|
+
readonly popover: 200;
|
|
184
|
+
readonly tooltip: 300;
|
|
185
|
+
};
|
|
186
|
+
}, {
|
|
187
|
+
readonly background: "colors";
|
|
188
|
+
readonly backgroundColor: "colors";
|
|
189
|
+
readonly backgroundImage: "colors";
|
|
190
|
+
readonly blockSize: "sizes";
|
|
191
|
+
readonly border: "colors";
|
|
192
|
+
readonly borderBlock: "colors";
|
|
193
|
+
readonly borderBlockEnd: "colors";
|
|
194
|
+
readonly borderBlockStart: "colors";
|
|
195
|
+
readonly borderBottom: "colors";
|
|
196
|
+
readonly borderBottomColor: "colors";
|
|
197
|
+
readonly borderBottomLeftRadius: "radii";
|
|
198
|
+
readonly borderBottomRightRadius: "radii";
|
|
199
|
+
readonly borderBottomStyle: "border-styles";
|
|
200
|
+
readonly borderBottomWidth: "border-widths";
|
|
201
|
+
readonly borderColor: "colors";
|
|
202
|
+
readonly borderImage: "colors";
|
|
203
|
+
readonly borderInline: "colors";
|
|
204
|
+
readonly borderInlineEnd: "colors";
|
|
205
|
+
readonly borderInlineStart: "colors";
|
|
206
|
+
readonly borderLeft: "colors";
|
|
207
|
+
readonly borderLeftColor: "colors";
|
|
208
|
+
readonly borderLeftStyle: "border-styles";
|
|
209
|
+
readonly borderLeftWidth: "border-widths";
|
|
210
|
+
readonly borderRadius: "radii";
|
|
211
|
+
readonly borderRight: "colors";
|
|
212
|
+
readonly borderRightColor: "colors";
|
|
213
|
+
readonly borderRightStyle: "border-styles";
|
|
214
|
+
readonly borderRightWidth: "border-widths";
|
|
215
|
+
readonly borderStyle: "border-styles";
|
|
216
|
+
readonly borderTop: "colors";
|
|
217
|
+
readonly borderTopColor: "colors";
|
|
218
|
+
readonly borderTopLeftRadius: "radii";
|
|
219
|
+
readonly borderTopRightRadius: "radii";
|
|
220
|
+
readonly borderTopStyle: "border-styles";
|
|
221
|
+
readonly borderTopWidth: "border-widths";
|
|
222
|
+
readonly borderWidth: "border-widths";
|
|
223
|
+
readonly bottom: "space";
|
|
224
|
+
readonly boxShadow: "shadows";
|
|
225
|
+
readonly caretColor: "colors";
|
|
226
|
+
readonly color: "colors";
|
|
227
|
+
readonly columnGap: "space-gap";
|
|
228
|
+
readonly columnRuleColor: "colors";
|
|
229
|
+
readonly fill: "colors";
|
|
230
|
+
readonly flexBasis: "sizes";
|
|
231
|
+
readonly fontFamily: "fonts";
|
|
232
|
+
readonly fontSize: "font-sizes";
|
|
233
|
+
readonly fontWeight: "font-weights";
|
|
234
|
+
readonly gap: "space-gap";
|
|
235
|
+
readonly gridColumnGap: "space-gap";
|
|
236
|
+
readonly gridGap: "space-gap";
|
|
237
|
+
readonly gridRowGap: "space-gap";
|
|
238
|
+
readonly gridTemplateColumns: "sizes";
|
|
239
|
+
readonly gridTemplateRows: "sizes";
|
|
240
|
+
readonly height: "sizes";
|
|
241
|
+
readonly inlineSize: "sizes";
|
|
242
|
+
readonly inset: "space-inset";
|
|
243
|
+
readonly insetBlock: "space-inset";
|
|
244
|
+
readonly insetBlockEnd: "space-inset";
|
|
245
|
+
readonly insetBlockStart: "space-inset";
|
|
246
|
+
readonly insetInline: "space-inset";
|
|
247
|
+
readonly insetInlineEnd: "space-inset";
|
|
248
|
+
readonly insetInlineStart: "space-inset";
|
|
249
|
+
readonly left: "space";
|
|
250
|
+
readonly letterSpacing: "letter-spacings";
|
|
251
|
+
readonly lineHeight: "line-heights";
|
|
252
|
+
readonly margin: "space-offset";
|
|
253
|
+
readonly marginBlock: "space-offset";
|
|
254
|
+
readonly marginBlockEnd: "space-offset";
|
|
255
|
+
readonly marginBlockStart: "space-offset";
|
|
256
|
+
readonly marginBottom: "space-offset";
|
|
257
|
+
readonly marginInline: "space-offset";
|
|
258
|
+
readonly marginInlineEnd: "space-offset";
|
|
259
|
+
readonly marginInlineStart: "space-offset";
|
|
260
|
+
readonly marginLeft: "space-offset";
|
|
261
|
+
readonly marginRight: "space-offset";
|
|
262
|
+
readonly marginTop: "space-offset";
|
|
263
|
+
readonly maxBlockSize: "sizes";
|
|
264
|
+
readonly maxHeight: "sizes";
|
|
265
|
+
readonly maxInlineSize: "sizes";
|
|
266
|
+
readonly maxWidth: "sizes";
|
|
267
|
+
readonly minBlockSize: "sizes";
|
|
268
|
+
readonly minHeight: "sizes";
|
|
269
|
+
readonly minInlineSize: "sizes";
|
|
270
|
+
readonly minWidth: "sizes";
|
|
271
|
+
readonly outline: "colors";
|
|
272
|
+
readonly outlineColor: "colors";
|
|
273
|
+
readonly padding: "space-inset";
|
|
274
|
+
readonly paddingBlock: "space-inset";
|
|
275
|
+
readonly paddingBlockEnd: "space-inset";
|
|
276
|
+
readonly paddingBlockStart: "space-inset";
|
|
277
|
+
readonly paddingBottom: "space-inset";
|
|
278
|
+
readonly paddingInline: "space-inset";
|
|
279
|
+
readonly paddingInlineEnd: "space-inset";
|
|
280
|
+
readonly paddingInlineStart: "space-inset";
|
|
281
|
+
readonly paddingLeft: "space-inset";
|
|
282
|
+
readonly paddingRight: "space-inset";
|
|
283
|
+
readonly paddingTop: "space-inset";
|
|
284
|
+
readonly right: "space";
|
|
285
|
+
readonly rowGap: "space-gap";
|
|
286
|
+
readonly scrollMargin: "space-offset";
|
|
287
|
+
readonly scrollMarginBlock: "space-offset";
|
|
288
|
+
readonly scrollMarginBlockEnd: "space-offset";
|
|
289
|
+
readonly scrollMarginBlockStart: "space-offset";
|
|
290
|
+
readonly scrollMarginBottom: "space-offset";
|
|
291
|
+
readonly scrollMarginInline: "space-offset";
|
|
292
|
+
readonly scrollMarginInlineEnd: "space-offset";
|
|
293
|
+
readonly scrollMarginInlineStart: "space-offset";
|
|
294
|
+
readonly scrollMarginLeft: "space-offset";
|
|
295
|
+
readonly scrollMarginRight: "space-offset";
|
|
296
|
+
readonly scrollMarginTop: "space-offset";
|
|
297
|
+
readonly scrollPadding: "space-inset";
|
|
298
|
+
readonly scrollPaddingBlock: "space-inset";
|
|
299
|
+
readonly scrollPaddingBlockEnd: "space-inset";
|
|
300
|
+
readonly scrollPaddingBlockStart: "space-inset";
|
|
301
|
+
readonly scrollPaddingBottom: "space-inset";
|
|
302
|
+
readonly scrollPaddingInline: "space-inset";
|
|
303
|
+
readonly scrollPaddingInlineEnd: "space-inset";
|
|
304
|
+
readonly scrollPaddingInlineStart: "space-inset";
|
|
305
|
+
readonly scrollPaddingLeft: "space-inset";
|
|
306
|
+
readonly scrollPaddingRight: "space-inset";
|
|
307
|
+
readonly scrollPaddingTop: "space-inset";
|
|
308
|
+
readonly stroke: "colors";
|
|
309
|
+
readonly textDecorationColor: "colors";
|
|
310
|
+
readonly textShadow: "shadows";
|
|
311
|
+
readonly top: "space";
|
|
312
|
+
readonly transition: "transitions";
|
|
313
|
+
readonly width: "sizes";
|
|
314
|
+
readonly zIndex: "z-indices";
|
|
315
|
+
}, {
|
|
316
|
+
paddingX: (value: {
|
|
317
|
+
readonly [$$PropertyValue]: "padding";
|
|
318
|
+
}) => {
|
|
319
|
+
paddingLeft: {
|
|
320
|
+
readonly [$$PropertyValue]: "padding";
|
|
321
|
+
};
|
|
322
|
+
paddingRight: {
|
|
323
|
+
readonly [$$PropertyValue]: "padding";
|
|
324
|
+
};
|
|
325
|
+
};
|
|
326
|
+
paddingY: (value: {
|
|
327
|
+
readonly [$$PropertyValue]: "padding";
|
|
328
|
+
}) => {
|
|
329
|
+
paddingTop: {
|
|
330
|
+
readonly [$$PropertyValue]: "padding";
|
|
331
|
+
};
|
|
332
|
+
paddingBottom: {
|
|
333
|
+
readonly [$$PropertyValue]: "padding";
|
|
334
|
+
};
|
|
335
|
+
};
|
|
336
|
+
marginX: (value: {
|
|
337
|
+
readonly [$$PropertyValue]: "margin";
|
|
338
|
+
}) => {
|
|
339
|
+
marginLeft: {
|
|
340
|
+
readonly [$$PropertyValue]: "margin";
|
|
341
|
+
};
|
|
342
|
+
marginRight: {
|
|
343
|
+
readonly [$$PropertyValue]: "margin";
|
|
344
|
+
};
|
|
345
|
+
};
|
|
346
|
+
marginY: (value: {
|
|
347
|
+
readonly [$$PropertyValue]: "margin";
|
|
348
|
+
}) => {
|
|
349
|
+
marginTop: {
|
|
350
|
+
readonly [$$PropertyValue]: "margin";
|
|
351
|
+
};
|
|
352
|
+
marginBottom: {
|
|
353
|
+
readonly [$$PropertyValue]: "margin";
|
|
354
|
+
};
|
|
355
|
+
};
|
|
356
|
+
}>>> & _mirohq_design_system_stitches.CustomStylesProps, "string" | "clipPath" | "color" | "cursor" | "direction" | "display" | "filter" | "fontFamily" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontVariant" | "fontWeight" | "height" | "imageRendering" | "letterSpacing" | "opacity" | "order" | "paintOrder" | "pointerEvents" | "rotate" | "scale" | "textRendering" | "transform" | "unicodeBidi" | "visibility" | "width" | "wordSpacing" | "writingMode" | "mask" | "offset" | "overflow" | "textDecoration" | "alignmentBaseline" | "baselineShift" | "clip" | "clipRule" | "colorInterpolation" | "colorRendering" | "dominantBaseline" | "fill" | "fillOpacity" | "fillRule" | "floodColor" | "floodOpacity" | "glyphOrientationVertical" | "lightingColor" | "markerEnd" | "markerMid" | "markerStart" | "shapeRendering" | "stopColor" | "stopOpacity" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "textAnchor" | "vectorEffect" | "asChild" | "media" | "path" | "crossOrigin" | "href" | "max" | "method" | "min" | "name" | "size" | "target" | "type" | "id" | "lang" | "tabIndex" | "role" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "end" | "local" | "x" | "y" | "alphabetic" | "hanging" | "ideographic" | "mathematical" | "accentHeight" | "accumulate" | "additive" | "allowReorder" | "amplitude" | "arabicForm" | "ascent" | "attributeName" | "attributeType" | "autoReverse" | "azimuth" | "baseFrequency" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clipPathUnits" | "colorInterpolationFilters" | "colorProfile" | "contentScriptType" | "contentStyleType" | "cx" | "cy" | "d" | "decelerate" | "descent" | "diffuseConstant" | "divisor" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "exponent" | "externalResourcesRequired" | "filterRes" | "filterUnits" | "focusable" | "format" | "fr" | "from" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphRef" | "gradientTransform" | "gradientUnits" | "horizAdvX" | "horizOriginX" | "in2" | "in" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "limitingConeAngle" | "markerHeight" | "markerUnits" | "markerWidth" | "maskContentUnits" | "maskUnits" | "mode" | "numOctaves" | "operator" | "orient" | "orientation" | "origin" | "overlinePosition" | "overlineThickness" | "panose1" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "radius" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rx" | "ry" | "seed" | "slope" | "spacing" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "strikethroughPosition" | "strikethroughThickness" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textLength" | "to" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "values" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "vMathematical" | "widths" | "x1" | "x2" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "yChannelSelector" | "z" | "zoomAndPan" | keyof _mirohq_design_system_stitches.CustomStylesProps> & react.RefAttributes<SVGSVGElement>> & _mirohq_design_system_stitches.StitchesInternals<react.ForwardRefExoticComponent<_mirohq_design_system_primitive.PrimitiveProps<"svg">>, {
|
|
357
|
+
size?: "small" | "medium" | "large" | undefined;
|
|
358
|
+
color?: "background-cta-active" | "background-cta-disabled" | "background-cta-hover" | "background-cta-idle" | "background-danger-active" | "background-danger-hover" | "background-danger-idle" | "background-default-active" | "background-default-disabled" | "background-default-hover" | "background-default-idle" | "background-default-selected" | "background-default-selected-active" | "background-info-idle" | "background-primary" | "background-secondary" | "background-success-idle" | "background-warning-idle" | "border-cta-idle" | "border-default-active" | "border-default-error" | "border-default-hover" | "border-default-idle" | "border-default-selected" | "canvas-primary" | "divider-default" | "focus-ring-default" | "font-cta-idle" | "font-default-active" | "font-default-disabled" | "font-default-error" | "font-default-hover" | "font-default-idle" | "font-default-selected" | "font-default-visited" | "font-primary" | "font-secondary" | "font-tertiary" | "icon-cta-idle" | "icon-default" | "icon-default-active" | "icon-default-disabled" | "icon-default-error" | "icon-default-hover" | "icon-default-idle" | "icon-default-selected" | "black" | "blue-10" | "blue-20" | "blue-50" | "blue-60" | "blue-70" | "blue-80" | "gray-20" | "gray-30" | "green-70" | "indigo-20" | "indigo-30" | "indigo-50" | "indigo-70" | "indigo-90" | "pink-20" | "pink-50" | "red-10" | "red-20" | "red-30" | "red-50" | "red-60" | "transparent" | "white" | "yellow-20" | "yellow-60" | undefined;
|
|
359
|
+
}, {}>;
|
|
360
|
+
declare type StyledIconProps = ComponentPropsWithRef<typeof StyledIcon>;
|
|
361
|
+
interface IconProps extends StyledIconProps {
|
|
362
|
+
/**
|
|
363
|
+
* The icon size.
|
|
364
|
+
*/
|
|
365
|
+
size?: StyledIconProps['size'];
|
|
366
|
+
/**
|
|
367
|
+
* The icon color.
|
|
368
|
+
*/
|
|
369
|
+
color?: StyledIconProps['color'];
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
declare const IconArrowLeft: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
373
|
+
|
|
374
|
+
declare const IconArrowRight: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
375
|
+
|
|
376
|
+
declare const IconArrowTopRight: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
377
|
+
|
|
378
|
+
declare const IconBarThree: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
379
|
+
|
|
380
|
+
declare const IconCheckMark: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
381
|
+
|
|
382
|
+
declare const IconChevronDown: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
383
|
+
|
|
384
|
+
declare const IconChevronLeft: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
385
|
+
|
|
386
|
+
declare const IconChevronRight: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
387
|
+
|
|
388
|
+
declare const IconChevronUp: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
389
|
+
|
|
390
|
+
declare const IconCrossCircle: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
391
|
+
|
|
392
|
+
declare const IconCross: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
393
|
+
|
|
394
|
+
declare const IconEnvelope: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
395
|
+
|
|
396
|
+
declare const IconExclamationPointCircle: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
397
|
+
|
|
398
|
+
declare const IconGlobe: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
399
|
+
|
|
400
|
+
declare const IconIconPlaceholder: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
401
|
+
|
|
402
|
+
declare const IconInformationMarkCircle: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
403
|
+
|
|
404
|
+
declare const IconLockClosed: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
405
|
+
|
|
406
|
+
declare const IconLockOpen: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
407
|
+
|
|
408
|
+
declare const IconMinus: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
409
|
+
|
|
410
|
+
declare const IconPlus: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
411
|
+
|
|
412
|
+
declare const IconQuestionMark: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
413
|
+
|
|
414
|
+
declare const IconSearch: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
415
|
+
|
|
416
|
+
declare const IconSocialFacebook: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
417
|
+
|
|
418
|
+
declare const IconSocialInstagram: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
419
|
+
|
|
420
|
+
declare const IconSocialLinkedin: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
421
|
+
|
|
422
|
+
declare const IconSocialTwitter: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
423
|
+
|
|
424
|
+
declare const IconSocialYoutube: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
425
|
+
|
|
426
|
+
export { IconArrowLeft, IconArrowRight, IconArrowTopRight, IconBarThree, IconCheckMark, IconChevronDown, IconChevronLeft, IconChevronRight, IconChevronUp, IconCross, IconCrossCircle, IconEnvelope, IconExclamationPointCircle, IconGlobe, IconIconPlaceholder, IconInformationMarkCircle, IconLockClosed, IconLockOpen, IconMinus, IconPlus, IconProps, IconQuestionMark, IconSearch, IconSocialFacebook, IconSocialInstagram, IconSocialLinkedin, IconSocialTwitter, IconSocialYoutube };
|
package/package.json
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@mirohq/design-system-icons",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "",
|
|
5
|
+
"author": "Miro",
|
|
6
|
+
"source": "src/index.ts",
|
|
7
|
+
"main": "dist/main.js",
|
|
8
|
+
"module": "dist/module.js",
|
|
9
|
+
"types": "dist/types.d.ts",
|
|
10
|
+
"sideEffects": false,
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"require": "./dist/main.js",
|
|
14
|
+
"import": "./dist/module.js",
|
|
15
|
+
"types": "./dist/types.d.ts"
|
|
16
|
+
},
|
|
17
|
+
"./svg/24/*": "./svg/24/*",
|
|
18
|
+
"./react/*": "./react/*"
|
|
19
|
+
},
|
|
20
|
+
"files": [
|
|
21
|
+
"dist",
|
|
22
|
+
"react",
|
|
23
|
+
"svg"
|
|
24
|
+
],
|
|
25
|
+
"publishConfig": {
|
|
26
|
+
"access": "public"
|
|
27
|
+
},
|
|
28
|
+
"peerDependencies": {
|
|
29
|
+
"@stitches/react": "^1.2.8",
|
|
30
|
+
"react": "^16.14 || ^17"
|
|
31
|
+
},
|
|
32
|
+
"dependencies": {
|
|
33
|
+
"@mirohq/design-system-link": "^1.1.0",
|
|
34
|
+
"@mirohq/design-system-primitive": "^1.0.4",
|
|
35
|
+
"@mirohq/design-system-utils": "^0.10.0",
|
|
36
|
+
"@mirohq/design-system-stitches": "^2.0.8"
|
|
37
|
+
},
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"@svgr/cli": "^6.5.1",
|
|
40
|
+
"@types/react-lottie": "1.2.6",
|
|
41
|
+
"@types/shelljs": "0.8.11",
|
|
42
|
+
"dotenv": "16.0.3",
|
|
43
|
+
"lodash.camelcase": "^3.0.0",
|
|
44
|
+
"lodash.capitalize": "^3.0.0",
|
|
45
|
+
"node-fetch": "3.2.9",
|
|
46
|
+
"react-lottie": "1.2.3",
|
|
47
|
+
"shelljs": "0.8.5",
|
|
48
|
+
"svgo": "3.0.2"
|
|
49
|
+
},
|
|
50
|
+
"scripts": {
|
|
51
|
+
"build": "rollup -c ../../rollup.config.js",
|
|
52
|
+
"clean": "rm -rf build",
|
|
53
|
+
"figma-sync": "node scripts/figma-sync/cli.mjs",
|
|
54
|
+
"prebuild": "pnpm clean",
|
|
55
|
+
"svg-to-react": "rm -rf react && svgr --config-file svgrrc.js -d react svg/24"
|
|
56
|
+
}
|
|
57
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
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 IconArrowLeft: ForwardRefExoticComponent<
|
|
8
|
+
IconProps & RefAttributes<SVGSVGElement>
|
|
9
|
+
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
|
+
createElement(
|
|
11
|
+
StyledIcon,
|
|
12
|
+
{ ...props, size, viewBox: '0 0 24 24', fill: 'none', ref: forwardRef },
|
|
13
|
+
<path d='M0 0h23.59v24H0z' />,
|
|
14
|
+
<path
|
|
15
|
+
stroke='currentColor'
|
|
16
|
+
strokeLinecap='round'
|
|
17
|
+
strokeWidth={2}
|
|
18
|
+
d='M20.59 12h-17M10 5l-7 7 7 7'
|
|
19
|
+
/>
|
|
20
|
+
)
|
|
21
|
+
)
|