@mirohq/design-system-icons 0.2.2 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (62) hide show
  1. package/dist/main.js +593 -18
  2. package/dist/main.js.map +1 -1
  3. package/dist/module.js +572 -19
  4. package/dist/module.js.map +1 -1
  5. package/dist/types.d.ts +45 -1
  6. package/package.json +1 -1
  7. package/react/arrow-down.tsx +1 -1
  8. package/react/arrow-fat-right.tsx +32 -0
  9. package/react/arrow-up.tsx +1 -1
  10. package/react/chat.tsx +32 -0
  11. package/react/circle-motion-x.tsx +33 -0
  12. package/react/circle.tsx +32 -0
  13. package/react/exclamation-point-circle.tsx +2 -2
  14. package/react/funnel.tsx +33 -0
  15. package/react/index.ts +22 -0
  16. package/react/information-mark-circle.tsx +1 -1
  17. package/react/line-diagonal.tsx +33 -0
  18. package/react/microphone-slash.tsx +33 -0
  19. package/react/microphone.tsx +33 -0
  20. package/react/parallelogram.tsx +32 -0
  21. package/react/pause-circle.tsx +33 -0
  22. package/react/play-circle.tsx +26 -0
  23. package/react/playback-speed-circle.tsx +31 -0
  24. package/react/rhombus.tsx +32 -0
  25. package/react/shapes.tsx +33 -0
  26. package/react/sliders-x.tsx +33 -0
  27. package/react/sliders-y.tsx +33 -0
  28. package/react/speaker-cross.tsx +33 -0
  29. package/react/speaker-high.tsx +33 -0
  30. package/react/square-rounded.tsx +32 -0
  31. package/react/square.tsx +32 -0
  32. package/react/stop-circle.tsx +25 -0
  33. package/react/triangle.tsx +32 -0
  34. package/react/wallet.tsx +1 -1
  35. package/svg/24/arrow-down.svg +1 -1
  36. package/svg/24/arrow-fat-right.svg +1 -0
  37. package/svg/24/arrow-up.svg +1 -1
  38. package/svg/24/chat.svg +1 -0
  39. package/svg/24/circle-motion-x.svg +1 -0
  40. package/svg/24/circle.svg +1 -0
  41. package/svg/24/exclamation-point-circle.svg +1 -1
  42. package/svg/24/funnel.svg +1 -0
  43. package/svg/24/information-mark-circle.svg +1 -1
  44. package/svg/24/line-diagonal.svg +1 -0
  45. package/svg/24/microphone-slash.svg +1 -0
  46. package/svg/24/microphone.svg +1 -0
  47. package/svg/24/parallelogram.svg +1 -0
  48. package/svg/24/pause-circle.svg +1 -0
  49. package/svg/24/play-circle.svg +1 -0
  50. package/svg/24/playback-speed-circle.svg +1 -0
  51. package/svg/24/rhombus.svg +1 -0
  52. package/svg/24/shapes.svg +1 -0
  53. package/svg/24/sliders-x.svg +1 -0
  54. package/svg/24/sliders-y.svg +1 -0
  55. package/svg/24/speaker-cross.svg +1 -0
  56. package/svg/24/speaker-high.svg +1 -0
  57. package/svg/24/square-rounded.svg +1 -0
  58. package/svg/24/square.svg +1 -0
  59. package/svg/24/stop-circle.svg +1 -0
  60. package/svg/24/triangle.svg +1 -0
  61. package/svg/24/wallet.svg +1 -1
  62. package/svg/meta.json +143 -0
@@ -0,0 +1,32 @@
1
+ import React, { forwardRef, createElement } from 'react'
2
+ import type { ForwardRefExoticComponent, RefAttributes } from 'react'
3
+
4
+ import { StyledIcon } from '../src/icon'
5
+ import type { IconProps } from '../src/icon'
6
+
7
+ export const IconCircle: ForwardRefExoticComponent<
8
+ IconProps & RefAttributes<SVGSVGElement>
9
+ > = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
10
+ createElement(
11
+ StyledIcon,
12
+ {
13
+ ...props,
14
+ size,
15
+ viewBox: '0 0 24 24',
16
+ fill: 'none',
17
+ ref: forwardRef,
18
+ },
19
+ <g clipPath='url(#a)'>
20
+ <path
21
+ stroke='currentColor'
22
+ strokeWidth={2}
23
+ d='M20.5 12c0 4.97-3.53 8.5-8.5 8.5-4.97 0-8.5-3.53-8.5-8.5 0-4.97 3.53-8.5 8.5-8.5 4.97 0 8.5 3.53 8.5 8.5Z'
24
+ />
25
+ </g>,
26
+ <defs>
27
+ <clipPath id='a'>
28
+ <path d='M0 0h24v24H0z' />
29
+ </clipPath>
30
+ </defs>
31
+ )
32
+ )
@@ -16,12 +16,12 @@ export const IconExclamationPointCircle: ForwardRefExoticComponent<
16
16
  fill: 'none',
17
17
  ref: forwardRef,
18
18
  },
19
- <circle cx={12} cy={15.5} r={1} fill='currentColor' />,
20
19
  <path
21
20
  stroke='currentColor'
22
21
  strokeLinecap='round'
23
22
  strokeWidth={2}
24
23
  d='M12 8v4m9 0a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-8.5 3.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Z'
25
- />
24
+ />,
25
+ <path fill='currentColor' d='M13 15.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z' />
26
26
  )
27
27
  )
@@ -0,0 +1,33 @@
1
+ import React, { forwardRef, createElement } from 'react'
2
+ import type { ForwardRefExoticComponent, RefAttributes } from 'react'
3
+
4
+ import { StyledIcon } from '../src/icon'
5
+ import type { IconProps } from '../src/icon'
6
+
7
+ export const IconFunnel: ForwardRefExoticComponent<
8
+ IconProps & RefAttributes<SVGSVGElement>
9
+ > = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
10
+ createElement(
11
+ StyledIcon,
12
+ {
13
+ ...props,
14
+ size,
15
+ viewBox: '0 0 24 24',
16
+ fill: 'none',
17
+ ref: forwardRef,
18
+ },
19
+ <g clipPath='url(#a)'>
20
+ <path
21
+ stroke='currentColor'
22
+ strokeLinecap='round'
23
+ strokeWidth={2}
24
+ d='M19.772 4H4.228a.1.1 0 0 0-.073.168L10 10.5V19l3.447-1.724a1 1 0 0 0 .553-.894V10.5l5.845-6.332A.1.1 0 0 0 19.772 4Z'
25
+ />
26
+ </g>,
27
+ <defs>
28
+ <clipPath id='a'>
29
+ <path d='M0 0h24v24H0z' />
30
+ </clipPath>
31
+ </defs>
32
+ )
33
+ )
package/react/index.ts CHANGED
@@ -2,39 +2,61 @@ export { IconArrowBoxOut } from './arrow-box-out'
2
2
  export { IconArrowDownLeft } from './arrow-down-left'
3
3
  export { IconArrowDownRight } from './arrow-down-right'
4
4
  export { IconArrowDown } from './arrow-down'
5
+ export { IconArrowFatRight } from './arrow-fat-right'
5
6
  export { IconArrowLeft } from './arrow-left'
6
7
  export { IconArrowRight } from './arrow-right'
7
8
  export { IconArrowUpLeft } from './arrow-up-left'
8
9
  export { IconArrowUpRight } from './arrow-up-right'
9
10
  export { IconArrowUp } from './arrow-up'
10
11
  export { IconBarThree } from './bar-three'
12
+ export { IconChat } from './chat'
11
13
  export { IconCheckMark } from './check-mark'
12
14
  export { IconChevronDown } from './chevron-down'
13
15
  export { IconChevronLeft } from './chevron-left'
14
16
  export { IconChevronRight } from './chevron-right'
15
17
  export { IconChevronUp } from './chevron-up'
18
+ export { IconCircleMotionX } from './circle-motion-x'
19
+ export { IconCircle } from './circle'
16
20
  export { IconCog } from './cog'
17
21
  export { IconCrossCircle } from './cross-circle'
18
22
  export { IconCross } from './cross'
19
23
  export { IconEnvelope } from './envelope'
20
24
  export { IconExclamationPointCircle } from './exclamation-point-circle'
25
+ export { IconFunnel } from './funnel'
21
26
  export { IconGlobe } from './globe'
22
27
  export { IconHouse } from './house'
23
28
  export { IconInformationMarkCircle } from './information-mark-circle'
29
+ export { IconLineDiagonal } from './line-diagonal'
24
30
  export { IconLink } from './link'
25
31
  export { IconLockClosed } from './lock-closed'
26
32
  export { IconLockOpen } from './lock-open'
27
33
  export { IconMagnifyingGlass } from './magnifying-glass'
34
+ export { IconMicrophoneSlash } from './microphone-slash'
35
+ export { IconMicrophone } from './microphone'
28
36
  export { IconMinus } from './minus'
37
+ export { IconParallelogram } from './parallelogram'
38
+ export { IconPauseCircle } from './pause-circle'
29
39
  export { IconPlaceholder } from './placeholder'
40
+ export { IconPlayCircle } from './play-circle'
41
+ export { IconPlaybackSpeedCircle } from './playback-speed-circle'
30
42
  export { IconPlug } from './plug'
31
43
  export { IconPlus } from './plus'
32
44
  export { IconQuestionMarkCircle } from './question-mark-circle'
45
+ export { IconRhombus } from './rhombus'
46
+ export { IconShapes } from './shapes'
47
+ export { IconSlidersX } from './sliders-x'
48
+ export { IconSlidersY } from './sliders-y'
33
49
  export { IconSocialFacebook } from './social-facebook'
34
50
  export { IconSocialInstagram } from './social-instagram'
35
51
  export { IconSocialLinkedin } from './social-linkedin'
36
52
  export { IconSocialTwitter } from './social-twitter'
37
53
  export { IconSocialYoutube } from './social-youtube'
54
+ export { IconSpeakerCross } from './speaker-cross'
55
+ export { IconSpeakerHigh } from './speaker-high'
56
+ export { IconSquareRounded } from './square-rounded'
57
+ export { IconSquare } from './square'
58
+ export { IconStopCircle } from './stop-circle'
59
+ export { IconTriangle } from './triangle'
38
60
  export { IconUserAdd } from './user-add'
39
61
  export { IconUser } from './user'
40
62
  export { IconUsers } from './users'
@@ -16,7 +16,7 @@ export const IconInformationMarkCircle: ForwardRefExoticComponent<
16
16
  fill: 'none',
17
17
  ref: forwardRef,
18
18
  },
19
- <circle cx={12} cy={8.5} r={1} fill='currentColor' />,
19
+ <path fill='currentColor' d='M13 8.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z' />,
20
20
  <path
21
21
  stroke='currentColor'
22
22
  strokeLinecap='round'
@@ -0,0 +1,33 @@
1
+ import React, { forwardRef, createElement } from 'react'
2
+ import type { ForwardRefExoticComponent, RefAttributes } from 'react'
3
+
4
+ import { StyledIcon } from '../src/icon'
5
+ import type { IconProps } from '../src/icon'
6
+
7
+ export const IconLineDiagonal: ForwardRefExoticComponent<
8
+ IconProps & RefAttributes<SVGSVGElement>
9
+ > = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
10
+ createElement(
11
+ StyledIcon,
12
+ {
13
+ ...props,
14
+ size,
15
+ viewBox: '0 0 24 24',
16
+ fill: 'none',
17
+ ref: forwardRef,
18
+ },
19
+ <g clipPath='url(#a)'>
20
+ <path
21
+ stroke='currentColor'
22
+ strokeLinecap='round'
23
+ strokeWidth={2}
24
+ d='M4 20 20 4'
25
+ />
26
+ </g>,
27
+ <defs>
28
+ <clipPath id='a'>
29
+ <path d='M0 0h24v24H0z' />
30
+ </clipPath>
31
+ </defs>
32
+ )
33
+ )
@@ -0,0 +1,33 @@
1
+ import React, { forwardRef, createElement } from 'react'
2
+ import type { ForwardRefExoticComponent, RefAttributes } from 'react'
3
+
4
+ import { StyledIcon } from '../src/icon'
5
+ import type { IconProps } from '../src/icon'
6
+
7
+ export const IconMicrophoneSlash: ForwardRefExoticComponent<
8
+ IconProps & RefAttributes<SVGSVGElement>
9
+ > = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
10
+ createElement(
11
+ StyledIcon,
12
+ {
13
+ ...props,
14
+ size,
15
+ viewBox: '0 0 24 24',
16
+ fill: 'none',
17
+ ref: forwardRef,
18
+ },
19
+ <g clipPath='url(#a)'>
20
+ <path
21
+ stroke='currentColor'
22
+ strokeLinecap='round'
23
+ strokeWidth={2}
24
+ d='M19 8v3a7 7 0 0 1-7 7m0 0v3m0-3a6.984 6.984 0 0 1-5.284-2.409M15 7v4a3 3 0 0 1-5.387 1.818M15 7 4 18M15 7l4-4M5 8v3c0 .34.024.673.07 1M9 7.5V6a3 3 0 0 1 4.5-2.599'
25
+ />
26
+ </g>,
27
+ <defs>
28
+ <clipPath id='a'>
29
+ <path d='M0 0h24v24H0z' />
30
+ </clipPath>
31
+ </defs>
32
+ )
33
+ )
@@ -0,0 +1,33 @@
1
+ import React, { forwardRef, createElement } from 'react'
2
+ import type { ForwardRefExoticComponent, RefAttributes } from 'react'
3
+
4
+ import { StyledIcon } from '../src/icon'
5
+ import type { IconProps } from '../src/icon'
6
+
7
+ export const IconMicrophone: ForwardRefExoticComponent<
8
+ IconProps & RefAttributes<SVGSVGElement>
9
+ > = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
10
+ createElement(
11
+ StyledIcon,
12
+ {
13
+ ...props,
14
+ size,
15
+ viewBox: '0 0 24 24',
16
+ fill: 'none',
17
+ ref: forwardRef,
18
+ },
19
+ <g clipPath='url(#a)'>
20
+ <path
21
+ stroke='currentColor'
22
+ strokeLinecap='round'
23
+ strokeWidth={2}
24
+ d='M5 8v3a7 7 0 0 0 7 7m7-10v3a7 7 0 0 1-7 7m0 0v3m3-15v5a3 3 0 1 1-6 0V6a3 3 0 1 1 6 0Z'
25
+ />
26
+ </g>,
27
+ <defs>
28
+ <clipPath id='a'>
29
+ <path d='M0 0h24v24H0z' />
30
+ </clipPath>
31
+ </defs>
32
+ )
33
+ )
@@ -0,0 +1,32 @@
1
+ import React, { forwardRef, createElement } from 'react'
2
+ import type { ForwardRefExoticComponent, RefAttributes } from 'react'
3
+
4
+ import { StyledIcon } from '../src/icon'
5
+ import type { IconProps } from '../src/icon'
6
+
7
+ export const IconParallelogram: ForwardRefExoticComponent<
8
+ IconProps & RefAttributes<SVGSVGElement>
9
+ > = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
10
+ createElement(
11
+ StyledIcon,
12
+ {
13
+ ...props,
14
+ size,
15
+ viewBox: '0 0 24 24',
16
+ fill: 'none',
17
+ ref: forwardRef,
18
+ },
19
+ <g clipPath='url(#a)'>
20
+ <path
21
+ stroke='currentColor'
22
+ strokeWidth={2}
23
+ d='M21.68 4H6.195a.25.25 0 0 0-.242.19l-3.875 15.5a.25.25 0 0 0 .242.31h15.485a.25.25 0 0 0 .242-.19l3.875-15.5A.25.25 0 0 0 21.68 4Z'
24
+ />
25
+ </g>,
26
+ <defs>
27
+ <clipPath id='a'>
28
+ <path d='M0 0h24v24H0z' />
29
+ </clipPath>
30
+ </defs>
31
+ )
32
+ )
@@ -0,0 +1,33 @@
1
+ import React, { forwardRef, createElement } from 'react'
2
+ import type { ForwardRefExoticComponent, RefAttributes } from 'react'
3
+
4
+ import { StyledIcon } from '../src/icon'
5
+ import type { IconProps } from '../src/icon'
6
+
7
+ export const IconPauseCircle: ForwardRefExoticComponent<
8
+ IconProps & RefAttributes<SVGSVGElement>
9
+ > = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
10
+ createElement(
11
+ StyledIcon,
12
+ {
13
+ ...props,
14
+ size,
15
+ viewBox: '0 0 24 24',
16
+ fill: 'none',
17
+ ref: forwardRef,
18
+ },
19
+ <g clipPath='url(#a)'>
20
+ <path
21
+ stroke='currentColor'
22
+ strokeLinecap='round'
23
+ strokeWidth={2}
24
+ d='M13.889 9.167v5.666M10.11 9.167v5.666M20.5 12a8.5 8.5 0 1 1-17 0 8.5 8.5 0 0 1 17 0Z'
25
+ />
26
+ </g>,
27
+ <defs>
28
+ <clipPath id='a'>
29
+ <path d='M0 0h24v24H0z' />
30
+ </clipPath>
31
+ </defs>
32
+ )
33
+ )
@@ -0,0 +1,26 @@
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 IconPlayCircle: ForwardRefExoticComponent<
8
+ IconProps & RefAttributes<SVGSVGElement>
9
+ > = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
10
+ createElement(
11
+ StyledIcon,
12
+ {
13
+ ...props,
14
+ size,
15
+ viewBox: '0 0 24 24',
16
+ fill: 'none',
17
+ ref: forwardRef,
18
+ },
19
+ <circle cx={12} cy={12} r={8.5} stroke='currentColor' strokeWidth={2} />,
20
+ <path
21
+ fill='currentColor'
22
+ stroke='currentColor'
23
+ d='M15.099 12 10.5 15.066V8.934L15.099 12Z'
24
+ />
25
+ )
26
+ )
@@ -0,0 +1,31 @@
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 IconPlaybackSpeedCircle: ForwardRefExoticComponent<
8
+ IconProps & RefAttributes<SVGSVGElement>
9
+ > = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
10
+ createElement(
11
+ StyledIcon,
12
+ {
13
+ ...props,
14
+ size,
15
+ viewBox: '0 0 24 24',
16
+ fill: 'none',
17
+ ref: forwardRef,
18
+ },
19
+ <path
20
+ stroke='currentColor'
21
+ strokeLinecap='round'
22
+ strokeWidth={2}
23
+ d='M10.583 3.618a8.5 8.5 0 1 1 .173 16.792M7.3 4.917a8.547 8.547 0 0 0-2.222 2.15m-1.444 3.421a8.55 8.55 0 0 0-.016 2.929m1.479 3.543a8.55 8.55 0 0 0 1.709 1.769'
24
+ />,
25
+ <path
26
+ fill='currentColor'
27
+ stroke='currentColor'
28
+ d='M15.099 12 10.5 15.066V8.934L15.099 12Z'
29
+ />
30
+ )
31
+ )
@@ -0,0 +1,32 @@
1
+ import React, { forwardRef, createElement } from 'react'
2
+ import type { ForwardRefExoticComponent, RefAttributes } from 'react'
3
+
4
+ import { StyledIcon } from '../src/icon'
5
+ import type { IconProps } from '../src/icon'
6
+
7
+ export const IconRhombus: ForwardRefExoticComponent<
8
+ IconProps & RefAttributes<SVGSVGElement>
9
+ > = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
10
+ createElement(
11
+ StyledIcon,
12
+ {
13
+ ...props,
14
+ size,
15
+ viewBox: '0 0 24 24',
16
+ fill: 'none',
17
+ ref: forwardRef,
18
+ },
19
+ <g clipPath='url(#a)'>
20
+ <path
21
+ stroke='currentColor'
22
+ strokeWidth={2}
23
+ d='m11.823 3.177-8.646 8.646a.25.25 0 0 0 0 .354l8.646 8.646a.25.25 0 0 0 .354 0l8.646-8.646a.25.25 0 0 0 0-.354l-8.646-8.646a.25.25 0 0 0-.354 0Z'
24
+ />
25
+ </g>,
26
+ <defs>
27
+ <clipPath id='a'>
28
+ <path d='M0 0h24v24H0z' />
29
+ </clipPath>
30
+ </defs>
31
+ )
32
+ )
@@ -0,0 +1,33 @@
1
+ import React, { forwardRef, createElement } from 'react'
2
+ import type { ForwardRefExoticComponent, RefAttributes } from 'react'
3
+
4
+ import { StyledIcon } from '../src/icon'
5
+ import type { IconProps } from '../src/icon'
6
+
7
+ export const IconShapes: ForwardRefExoticComponent<
8
+ IconProps & RefAttributes<SVGSVGElement>
9
+ > = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
10
+ createElement(
11
+ StyledIcon,
12
+ {
13
+ ...props,
14
+ size,
15
+ viewBox: '0 0 24 24',
16
+ fill: 'none',
17
+ ref: forwardRef,
18
+ },
19
+ <g clipPath='url(#a)'>
20
+ <path
21
+ stroke='currentColor'
22
+ strokeLinecap='round'
23
+ strokeWidth={2}
24
+ d='M8 9.5a6.5 6.5 0 1 1 6.5 6.5M3.25 10h10.5a.25.25 0 0 1 .25.25v10.5a.25.25 0 0 1-.25.25H3.25a.25.25 0 0 1-.25-.25v-10.5a.25.25 0 0 1 .25-.25Z'
25
+ />
26
+ </g>,
27
+ <defs>
28
+ <clipPath id='a'>
29
+ <path d='M0 0h24v24H0z' />
30
+ </clipPath>
31
+ </defs>
32
+ )
33
+ )
@@ -0,0 +1,33 @@
1
+ import React, { forwardRef, createElement } from 'react'
2
+ import type { ForwardRefExoticComponent, RefAttributes } from 'react'
3
+
4
+ import { StyledIcon } from '../src/icon'
5
+ import type { IconProps } from '../src/icon'
6
+
7
+ export const IconSlidersX: ForwardRefExoticComponent<
8
+ IconProps & RefAttributes<SVGSVGElement>
9
+ > = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
10
+ createElement(
11
+ StyledIcon,
12
+ {
13
+ ...props,
14
+ size,
15
+ viewBox: '0 0 24 24',
16
+ fill: 'none',
17
+ ref: forwardRef,
18
+ },
19
+ <g clipPath='url(#a)'>
20
+ <path
21
+ stroke='currentColor'
22
+ strokeLinecap='round'
23
+ strokeWidth={2}
24
+ d='M20 8h-5M9 8H4m11.5 8H4m8-6a2 2 0 1 1 0-4 2 2 0 0 1 0 4Zm6 8a2 2 0 1 1 0-4 2 2 0 0 1 0 4Z'
25
+ />
26
+ </g>,
27
+ <defs>
28
+ <clipPath id='a'>
29
+ <path d='M0 0h24v24H0z' />
30
+ </clipPath>
31
+ </defs>
32
+ )
33
+ )
@@ -0,0 +1,33 @@
1
+ import React, { forwardRef, createElement } from 'react'
2
+ import type { ForwardRefExoticComponent, RefAttributes } from 'react'
3
+
4
+ import { StyledIcon } from '../src/icon'
5
+ import type { IconProps } from '../src/icon'
6
+
7
+ export const IconSlidersY: ForwardRefExoticComponent<
8
+ IconProps & RefAttributes<SVGSVGElement>
9
+ > = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
10
+ createElement(
11
+ StyledIcon,
12
+ {
13
+ ...props,
14
+ size,
15
+ viewBox: '0 0 24 24',
16
+ fill: 'none',
17
+ ref: forwardRef,
18
+ },
19
+ <g clipPath='url(#a)'>
20
+ <path
21
+ stroke='currentColor'
22
+ strokeLinecap='round'
23
+ strokeWidth={2}
24
+ d='M5 5v4m0 6v4m7-14v10m0 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm7-5.5V19M7 12a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm14-5a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z'
25
+ />
26
+ </g>,
27
+ <defs>
28
+ <clipPath id='a'>
29
+ <path d='M0 0h24v24H0z' />
30
+ </clipPath>
31
+ </defs>
32
+ )
33
+ )
@@ -0,0 +1,33 @@
1
+ import React, { forwardRef, createElement } from 'react'
2
+ import type { ForwardRefExoticComponent, RefAttributes } from 'react'
3
+
4
+ import { StyledIcon } from '../src/icon'
5
+ import type { IconProps } from '../src/icon'
6
+
7
+ export const IconSpeakerCross: ForwardRefExoticComponent<
8
+ IconProps & RefAttributes<SVGSVGElement>
9
+ > = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
10
+ createElement(
11
+ StyledIcon,
12
+ {
13
+ ...props,
14
+ size,
15
+ viewBox: '0 0 24 24',
16
+ fill: 'none',
17
+ ref: forwardRef,
18
+ },
19
+ <g clipPath='url(#a)'>
20
+ <path
21
+ stroke='currentColor'
22
+ strokeLinecap='round'
23
+ strokeWidth={2}
24
+ d='m21 9.5-5 5m0-5 5 5M3.1 15h3.856a.1.1 0 0 1 .074.033l4.796 5.276A.1.1 0 0 0 12 20.24V3.76a.1.1 0 0 0-.174-.068L7.03 8.967A.1.1 0 0 1 6.956 9H3.1a.1.1 0 0 0-.1.1v5.8a.1.1 0 0 0 .1.1Z'
25
+ />
26
+ </g>,
27
+ <defs>
28
+ <clipPath id='a'>
29
+ <path d='M0 0h24v24H0z' />
30
+ </clipPath>
31
+ </defs>
32
+ )
33
+ )
@@ -0,0 +1,33 @@
1
+ import React, { forwardRef, createElement } from 'react'
2
+ import type { ForwardRefExoticComponent, RefAttributes } from 'react'
3
+
4
+ import { StyledIcon } from '../src/icon'
5
+ import type { IconProps } from '../src/icon'
6
+
7
+ export const IconSpeakerHigh: ForwardRefExoticComponent<
8
+ IconProps & RefAttributes<SVGSVGElement>
9
+ > = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
10
+ createElement(
11
+ StyledIcon,
12
+ {
13
+ ...props,
14
+ size,
15
+ viewBox: '0 0 24 24',
16
+ fill: 'none',
17
+ ref: forwardRef,
18
+ },
19
+ <g clipPath='url(#a)'>
20
+ <path
21
+ stroke='currentColor'
22
+ strokeLinecap='round'
23
+ strokeWidth={2}
24
+ d='M16 10v4m3-8.5V18M3.1 15h3.856a.1.1 0 0 1 .074.033l4.796 5.276A.1.1 0 0 0 12 20.24V3.76a.1.1 0 0 0-.174-.068L7.03 8.967A.1.1 0 0 1 6.956 9H3.1a.1.1 0 0 0-.1.1v5.8a.1.1 0 0 0 .1.1Z'
25
+ />
26
+ </g>,
27
+ <defs>
28
+ <clipPath id='a'>
29
+ <path d='M0 0h24v24H0z' />
30
+ </clipPath>
31
+ </defs>
32
+ )
33
+ )
@@ -0,0 +1,32 @@
1
+ import React, { forwardRef, createElement } from 'react'
2
+ import type { ForwardRefExoticComponent, RefAttributes } from 'react'
3
+
4
+ import { StyledIcon } from '../src/icon'
5
+ import type { IconProps } from '../src/icon'
6
+
7
+ export const IconSquareRounded: ForwardRefExoticComponent<
8
+ IconProps & RefAttributes<SVGSVGElement>
9
+ > = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
10
+ createElement(
11
+ StyledIcon,
12
+ {
13
+ ...props,
14
+ size,
15
+ viewBox: '0 0 24 24',
16
+ fill: 'none',
17
+ ref: forwardRef,
18
+ },
19
+ <g clipPath='url(#a)'>
20
+ <path
21
+ stroke='currentColor'
22
+ strokeWidth={2}
23
+ d='M16 4H8a4 4 0 0 0-4 4v8a4 4 0 0 0 4 4h8a4 4 0 0 0 4-4V8a4 4 0 0 0-4-4Z'
24
+ />
25
+ </g>,
26
+ <defs>
27
+ <clipPath id='a'>
28
+ <path d='M0 0h24v24H0z' />
29
+ </clipPath>
30
+ </defs>
31
+ )
32
+ )
@@ -0,0 +1,32 @@
1
+ import React, { forwardRef, createElement } from 'react'
2
+ import type { ForwardRefExoticComponent, RefAttributes } from 'react'
3
+
4
+ import { StyledIcon } from '../src/icon'
5
+ import type { IconProps } from '../src/icon'
6
+
7
+ export const IconSquare: ForwardRefExoticComponent<
8
+ IconProps & RefAttributes<SVGSVGElement>
9
+ > = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
10
+ createElement(
11
+ StyledIcon,
12
+ {
13
+ ...props,
14
+ size,
15
+ viewBox: '0 0 24 24',
16
+ fill: 'none',
17
+ ref: forwardRef,
18
+ },
19
+ <g clipPath='url(#a)'>
20
+ <path
21
+ stroke='currentColor'
22
+ strokeWidth={2}
23
+ d='M19.75 4H4.25a.25.25 0 0 0-.25.25v15.5c0 .138.112.25.25.25h15.5a.25.25 0 0 0 .25-.25V4.25a.25.25 0 0 0-.25-.25Z'
24
+ />
25
+ </g>,
26
+ <defs>
27
+ <clipPath id='a'>
28
+ <path d='M0 0h24v24H0z' />
29
+ </clipPath>
30
+ </defs>
31
+ )
32
+ )