@mirohq/design-system-icons 0.1.3-colors.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main.js +499 -204
- package/dist/main.js.map +1 -1
- package/dist/module.js +482 -201
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +108 -141
- package/package.json +3 -3
- package/react/{search.tsx → arrow-box-out.tsx} +9 -5
- package/react/{icon-placeholder.tsx → arrow-down-left.tsx} +9 -5
- package/react/arrow-down-right.tsx +26 -0
- package/react/arrow-down.tsx +26 -0
- package/react/arrow-left.tsx +8 -3
- package/react/arrow-right.tsx +7 -2
- package/react/arrow-up-left.tsx +26 -0
- package/react/arrow-up-right.tsx +26 -0
- package/react/{arrow-top-right.tsx → arrow-up.tsx} +9 -4
- package/react/bar-three.tsx +7 -2
- package/react/check-mark.tsx +7 -2
- package/react/chevron-down.tsx +7 -2
- package/react/chevron-left.tsx +7 -2
- package/react/chevron-right.tsx +7 -2
- package/react/chevron-up.tsx +7 -2
- package/react/cog.tsx +28 -0
- package/react/cross-circle.tsx +8 -4
- package/react/cross.tsx +7 -2
- package/react/envelope.tsx +8 -12
- package/react/exclamation-point-circle.tsx +9 -4
- package/react/globe.tsx +8 -4
- package/react/house.tsx +24 -0
- package/react/index.ts +18 -4
- package/react/information-mark-circle.tsx +9 -4
- package/react/link.tsx +26 -0
- package/react/lock-closed.tsx +9 -14
- package/react/lock-open.tsx +9 -14
- package/react/magnifying-glass.tsx +26 -0
- package/react/minus.tsx +7 -2
- package/react/placeholder.tsx +26 -0
- package/react/plug.tsx +26 -0
- package/react/plus.tsx +7 -2
- package/react/{question-mark.tsx → question-mark-circle.tsx} +9 -5
- package/react/social-facebook.tsx +7 -2
- package/react/social-instagram.tsx +7 -2
- package/react/social-linkedin.tsx +7 -2
- package/react/social-twitter.tsx +7 -2
- package/react/social-youtube.tsx +7 -2
- package/react/user-add.tsx +26 -0
- package/react/user.tsx +26 -0
- package/react/users.tsx +26 -0
- package/react/wallet.tsx +27 -0
- package/svg/24/arrow-box-out.svg +1 -0
- package/svg/24/arrow-down-left.svg +1 -0
- package/svg/24/arrow-down-right.svg +1 -0
- package/svg/24/arrow-down.svg +1 -0
- package/svg/24/arrow-left.svg +1 -1
- package/svg/24/arrow-right.svg +1 -1
- package/svg/24/arrow-up-left.svg +1 -0
- package/svg/24/arrow-up-right.svg +1 -0
- package/svg/24/arrow-up.svg +1 -0
- package/svg/24/bar-three.svg +1 -1
- package/svg/24/check-mark.svg +1 -1
- package/svg/24/chevron-down.svg +1 -1
- package/svg/24/chevron-left.svg +1 -1
- package/svg/24/chevron-right.svg +1 -1
- package/svg/24/chevron-up.svg +1 -1
- package/svg/24/cog.svg +1 -0
- package/svg/24/cross-circle.svg +1 -1
- package/svg/24/cross.svg +1 -1
- package/svg/24/envelope.svg +1 -1
- package/svg/24/exclamation-point-circle.svg +1 -1
- package/svg/24/globe.svg +1 -1
- package/svg/24/house.svg +1 -0
- package/svg/24/information-mark-circle.svg +1 -1
- package/svg/24/link.svg +1 -0
- package/svg/24/lock-closed.svg +1 -1
- package/svg/24/lock-open.svg +1 -1
- package/svg/24/magnifying-glass.svg +1 -0
- package/svg/24/minus.svg +1 -1
- package/svg/24/placeholder.svg +1 -0
- package/svg/24/plug.svg +1 -0
- package/svg/24/plus.svg +1 -1
- package/svg/24/question-mark-circle.svg +1 -0
- package/svg/24/social-facebook.svg +1 -1
- package/svg/24/social-instagram.svg +1 -1
- package/svg/24/social-linkedin.svg +1 -1
- package/svg/24/social-twitter.svg +1 -1
- package/svg/24/social-youtube.svg +1 -1
- package/svg/24/user-add.svg +1 -0
- package/svg/24/user.svg +1 -0
- package/svg/24/users.svg +1 -0
- package/svg/24/wallet.svg +1 -0
- package/svg/meta.json +114 -8
- package/svg/24/arrow-top-right.svg +0 -1
- package/svg/24/icon-placeholder.svg +0 -1
- package/svg/24/question-mark.svg +0 -1
- package/svg/24/search.svg +0 -1
|
@@ -4,18 +4,23 @@ import type { ForwardRefExoticComponent, RefAttributes } from 'react'
|
|
|
4
4
|
import { StyledIcon } from '../src/icon'
|
|
5
5
|
import type { IconProps } from '../src/icon'
|
|
6
6
|
|
|
7
|
-
export const
|
|
7
|
+
export const IconArrowUp: ForwardRefExoticComponent<
|
|
8
8
|
IconProps & RefAttributes<SVGSVGElement>
|
|
9
9
|
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
10
|
createElement(
|
|
11
11
|
StyledIcon,
|
|
12
|
-
{
|
|
13
|
-
|
|
12
|
+
{
|
|
13
|
+
...props,
|
|
14
|
+
size,
|
|
15
|
+
viewBox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
ref: forwardRef,
|
|
18
|
+
},
|
|
14
19
|
<path
|
|
15
20
|
stroke='currentColor'
|
|
16
21
|
strokeLinecap='round'
|
|
17
22
|
strokeWidth={2}
|
|
18
|
-
d='
|
|
23
|
+
d='M12 4v17M5 10.41l7-7 7 7'
|
|
19
24
|
/>
|
|
20
25
|
)
|
|
21
26
|
)
|
package/react/bar-three.tsx
CHANGED
|
@@ -9,8 +9,13 @@ export const IconBarThree: ForwardRefExoticComponent<
|
|
|
9
9
|
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
10
|
createElement(
|
|
11
11
|
StyledIcon,
|
|
12
|
-
{
|
|
13
|
-
|
|
12
|
+
{
|
|
13
|
+
...props,
|
|
14
|
+
size,
|
|
15
|
+
viewBox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
ref: forwardRef,
|
|
18
|
+
},
|
|
14
19
|
<path
|
|
15
20
|
stroke='currentColor'
|
|
16
21
|
strokeLinecap='round'
|
package/react/check-mark.tsx
CHANGED
|
@@ -9,8 +9,13 @@ export const IconCheckMark: ForwardRefExoticComponent<
|
|
|
9
9
|
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
10
|
createElement(
|
|
11
11
|
StyledIcon,
|
|
12
|
-
{
|
|
13
|
-
|
|
12
|
+
{
|
|
13
|
+
...props,
|
|
14
|
+
size,
|
|
15
|
+
viewBox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
ref: forwardRef,
|
|
18
|
+
},
|
|
14
19
|
<path
|
|
15
20
|
stroke='currentColor'
|
|
16
21
|
strokeLinecap='round'
|
package/react/chevron-down.tsx
CHANGED
|
@@ -9,8 +9,13 @@ export const IconChevronDown: ForwardRefExoticComponent<
|
|
|
9
9
|
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
10
|
createElement(
|
|
11
11
|
StyledIcon,
|
|
12
|
-
{
|
|
13
|
-
|
|
12
|
+
{
|
|
13
|
+
...props,
|
|
14
|
+
size,
|
|
15
|
+
viewBox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
ref: forwardRef,
|
|
18
|
+
},
|
|
14
19
|
<path
|
|
15
20
|
stroke='currentColor'
|
|
16
21
|
strokeLinecap='round'
|
package/react/chevron-left.tsx
CHANGED
|
@@ -9,8 +9,13 @@ export const IconChevronLeft: ForwardRefExoticComponent<
|
|
|
9
9
|
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
10
|
createElement(
|
|
11
11
|
StyledIcon,
|
|
12
|
-
{
|
|
13
|
-
|
|
12
|
+
{
|
|
13
|
+
...props,
|
|
14
|
+
size,
|
|
15
|
+
viewBox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
ref: forwardRef,
|
|
18
|
+
},
|
|
14
19
|
<path
|
|
15
20
|
stroke='currentColor'
|
|
16
21
|
strokeLinecap='round'
|
package/react/chevron-right.tsx
CHANGED
|
@@ -9,8 +9,13 @@ export const IconChevronRight: ForwardRefExoticComponent<
|
|
|
9
9
|
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
10
|
createElement(
|
|
11
11
|
StyledIcon,
|
|
12
|
-
{
|
|
13
|
-
|
|
12
|
+
{
|
|
13
|
+
...props,
|
|
14
|
+
size,
|
|
15
|
+
viewBox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
ref: forwardRef,
|
|
18
|
+
},
|
|
14
19
|
<path
|
|
15
20
|
stroke='currentColor'
|
|
16
21
|
strokeLinecap='round'
|
package/react/chevron-up.tsx
CHANGED
|
@@ -9,8 +9,13 @@ export const IconChevronUp: ForwardRefExoticComponent<
|
|
|
9
9
|
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
10
|
createElement(
|
|
11
11
|
StyledIcon,
|
|
12
|
-
{
|
|
13
|
-
|
|
12
|
+
{
|
|
13
|
+
...props,
|
|
14
|
+
size,
|
|
15
|
+
viewBox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
ref: forwardRef,
|
|
18
|
+
},
|
|
14
19
|
<path
|
|
15
20
|
stroke='currentColor'
|
|
16
21
|
strokeLinecap='round'
|
package/react/cog.tsx
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
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 IconCog: 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={1} stroke='currentColor' strokeWidth={2} />,
|
|
20
|
+
<path
|
|
21
|
+
stroke='currentColor'
|
|
22
|
+
strokeLinecap='round'
|
|
23
|
+
strokeLinejoin='round'
|
|
24
|
+
strokeWidth={2}
|
|
25
|
+
d='M13.544 3h-3l-1 3-1.446.835L5 6.2 3.5 8.799l2.098 2.366v1.67L3.5 15.2 5 17.799l3.098-.634L9.544 18l1 3h3l1-3 1.446-.835 3.098.634 1.5-2.598-2.098-2.366v-1.67l2.099-2.366-1.5-2.598-3.099.634L14.544 6l-1-3Z'
|
|
26
|
+
/>
|
|
27
|
+
)
|
|
28
|
+
)
|
package/react/cross-circle.tsx
CHANGED
|
@@ -9,14 +9,18 @@ export const IconCrossCircle: ForwardRefExoticComponent<
|
|
|
9
9
|
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
10
|
createElement(
|
|
11
11
|
StyledIcon,
|
|
12
|
-
{
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
{
|
|
13
|
+
...props,
|
|
14
|
+
size,
|
|
15
|
+
viewBox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
ref: forwardRef,
|
|
18
|
+
},
|
|
15
19
|
<path
|
|
16
20
|
stroke='currentColor'
|
|
17
21
|
strokeLinecap='round'
|
|
18
22
|
strokeWidth={2}
|
|
19
|
-
d='m9 9 6 6m0-6-6
|
|
23
|
+
d='m9 9 6 6m0-6-6 6m12-3a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z'
|
|
20
24
|
/>
|
|
21
25
|
)
|
|
22
26
|
)
|
package/react/cross.tsx
CHANGED
|
@@ -9,8 +9,13 @@ export const IconCross: ForwardRefExoticComponent<
|
|
|
9
9
|
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
10
|
createElement(
|
|
11
11
|
StyledIcon,
|
|
12
|
-
{
|
|
13
|
-
|
|
12
|
+
{
|
|
13
|
+
...props,
|
|
14
|
+
size,
|
|
15
|
+
viewBox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
ref: forwardRef,
|
|
18
|
+
},
|
|
14
19
|
<path
|
|
15
20
|
stroke='currentColor'
|
|
16
21
|
strokeLinecap='round'
|
package/react/envelope.tsx
CHANGED
|
@@ -9,22 +9,18 @@ export const IconEnvelope: ForwardRefExoticComponent<
|
|
|
9
9
|
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
10
|
createElement(
|
|
11
11
|
StyledIcon,
|
|
12
|
-
{
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
stroke='currentColor'
|
|
20
|
-
strokeWidth={2}
|
|
21
|
-
rx={2}
|
|
22
|
-
/>,
|
|
12
|
+
{
|
|
13
|
+
...props,
|
|
14
|
+
size,
|
|
15
|
+
viewBox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
ref: forwardRef,
|
|
18
|
+
},
|
|
23
19
|
<path
|
|
24
20
|
stroke='currentColor'
|
|
25
21
|
strokeLinecap='round'
|
|
26
22
|
strokeWidth={2}
|
|
27
|
-
d='m7 9 3.618 3.459a2 2 0 0 0 2.764 0L17
|
|
23
|
+
d='m7 9 3.618 3.459a2 2 0 0 0 2.764 0L17 9M4 19h16a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1Z'
|
|
28
24
|
/>
|
|
29
25
|
)
|
|
30
26
|
)
|
|
@@ -9,14 +9,19 @@ export const IconExclamationPointCircle: ForwardRefExoticComponent<
|
|
|
9
9
|
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
10
|
createElement(
|
|
11
11
|
StyledIcon,
|
|
12
|
-
{
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
{
|
|
13
|
+
...props,
|
|
14
|
+
size,
|
|
15
|
+
viewBox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
ref: forwardRef,
|
|
18
|
+
},
|
|
19
|
+
<circle cx={12} cy={15.5} r={1} fill='currentColor' />,
|
|
15
20
|
<path
|
|
16
21
|
stroke='currentColor'
|
|
17
22
|
strokeLinecap='round'
|
|
18
23
|
strokeWidth={2}
|
|
19
|
-
d='M12
|
|
24
|
+
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'
|
|
20
25
|
/>
|
|
21
26
|
)
|
|
22
27
|
)
|
package/react/globe.tsx
CHANGED
|
@@ -9,14 +9,18 @@ export const IconGlobe: ForwardRefExoticComponent<
|
|
|
9
9
|
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
10
|
createElement(
|
|
11
11
|
StyledIcon,
|
|
12
|
-
{
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
{
|
|
13
|
+
...props,
|
|
14
|
+
size,
|
|
15
|
+
viewBox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
ref: forwardRef,
|
|
18
|
+
},
|
|
15
19
|
<path
|
|
16
20
|
stroke='currentColor'
|
|
17
21
|
strokeLinecap='round'
|
|
18
22
|
strokeWidth={2}
|
|
19
|
-
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
|
|
23
|
+
d='M11.663 3C9.495 4.62 8 8.042 8 12s1.495 7.38 3.663 9m.674-18C14.505 4.62 16 8.042 16 12s-1.495 7.38-3.663 9M4 9h16M4 15h16m1-3a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z'
|
|
20
24
|
/>
|
|
21
25
|
)
|
|
22
26
|
)
|
package/react/house.tsx
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
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 IconHouse: 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
|
+
fill='currentColor'
|
|
21
|
+
d='m12 4.4.707-.707L12 2.986l-.707.707L12 4.4Zm-9.707 8.293a1 1 0 1 0 1.414 1.414l-1.414-1.414Zm18 1.414a1 1 0 0 0 1.414-1.414l-1.414 1.414Zm-9-10.414-9 9 1.414 1.414 9-9-1.414-1.414Zm0 1.414 9 9 1.414-1.414-9-9-1.414 1.414ZM7 19v-8.5H5V19h2Zm0 0H5a2 2 0 0 0 2 2v-2Zm10 0H7v2h10v-2Zm0 0v2a2 2 0 0 0 2-2h-2Zm0-8.5V19h2v-8.5h-2Z'
|
|
22
|
+
/>
|
|
23
|
+
)
|
|
24
|
+
)
|
package/react/index.ts
CHANGED
|
@@ -1,27 +1,41 @@
|
|
|
1
|
+
export { IconArrowBoxOut } from './arrow-box-out'
|
|
2
|
+
export { IconArrowDownLeft } from './arrow-down-left'
|
|
3
|
+
export { IconArrowDownRight } from './arrow-down-right'
|
|
4
|
+
export { IconArrowDown } from './arrow-down'
|
|
1
5
|
export { IconArrowLeft } from './arrow-left'
|
|
2
6
|
export { IconArrowRight } from './arrow-right'
|
|
3
|
-
export {
|
|
7
|
+
export { IconArrowUpLeft } from './arrow-up-left'
|
|
8
|
+
export { IconArrowUpRight } from './arrow-up-right'
|
|
9
|
+
export { IconArrowUp } from './arrow-up'
|
|
4
10
|
export { IconBarThree } from './bar-three'
|
|
5
11
|
export { IconCheckMark } from './check-mark'
|
|
6
12
|
export { IconChevronDown } from './chevron-down'
|
|
7
13
|
export { IconChevronLeft } from './chevron-left'
|
|
8
14
|
export { IconChevronRight } from './chevron-right'
|
|
9
15
|
export { IconChevronUp } from './chevron-up'
|
|
16
|
+
export { IconCog } from './cog'
|
|
10
17
|
export { IconCrossCircle } from './cross-circle'
|
|
11
18
|
export { IconCross } from './cross'
|
|
12
19
|
export { IconEnvelope } from './envelope'
|
|
13
20
|
export { IconExclamationPointCircle } from './exclamation-point-circle'
|
|
14
21
|
export { IconGlobe } from './globe'
|
|
15
|
-
export {
|
|
22
|
+
export { IconHouse } from './house'
|
|
16
23
|
export { IconInformationMarkCircle } from './information-mark-circle'
|
|
24
|
+
export { IconLink } from './link'
|
|
17
25
|
export { IconLockClosed } from './lock-closed'
|
|
18
26
|
export { IconLockOpen } from './lock-open'
|
|
27
|
+
export { IconMagnifyingGlass } from './magnifying-glass'
|
|
19
28
|
export { IconMinus } from './minus'
|
|
29
|
+
export { IconPlaceholder } from './placeholder'
|
|
30
|
+
export { IconPlug } from './plug'
|
|
20
31
|
export { IconPlus } from './plus'
|
|
21
|
-
export {
|
|
22
|
-
export { IconSearch } from './search'
|
|
32
|
+
export { IconQuestionMarkCircle } from './question-mark-circle'
|
|
23
33
|
export { IconSocialFacebook } from './social-facebook'
|
|
24
34
|
export { IconSocialInstagram } from './social-instagram'
|
|
25
35
|
export { IconSocialLinkedin } from './social-linkedin'
|
|
26
36
|
export { IconSocialTwitter } from './social-twitter'
|
|
27
37
|
export { IconSocialYoutube } from './social-youtube'
|
|
38
|
+
export { IconUserAdd } from './user-add'
|
|
39
|
+
export { IconUser } from './user'
|
|
40
|
+
export { IconUsers } from './users'
|
|
41
|
+
export { IconWallet } from './wallet'
|
|
@@ -9,14 +9,19 @@ export const IconInformationMarkCircle: ForwardRefExoticComponent<
|
|
|
9
9
|
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
10
|
createElement(
|
|
11
11
|
StyledIcon,
|
|
12
|
-
{
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
{
|
|
13
|
+
...props,
|
|
14
|
+
size,
|
|
15
|
+
viewBox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
ref: forwardRef,
|
|
18
|
+
},
|
|
19
|
+
<circle cx={12} cy={8.5} r={1} fill='currentColor' />,
|
|
15
20
|
<path
|
|
16
21
|
stroke='currentColor'
|
|
17
22
|
strokeLinecap='round'
|
|
18
23
|
strokeWidth={2}
|
|
19
|
-
d='M12
|
|
24
|
+
d='M12 12v4m9-4a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-8.5-3.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Z'
|
|
20
25
|
/>
|
|
21
26
|
)
|
|
22
27
|
)
|
package/react/link.tsx
ADDED
|
@@ -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 IconLink: 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='m7.757 11.293-3.182 3.182a3.5 3.5 0 0 0 4.95 4.95l3.182-3.182M10.939 8.11l3.535-3.535a3.5 3.5 0 1 1 4.95 4.95L15.89 13.06m-7.425 2.475 7.071-7.071'
|
|
24
|
+
/>
|
|
25
|
+
)
|
|
26
|
+
)
|
package/react/lock-closed.tsx
CHANGED
|
@@ -9,24 +9,19 @@ export const IconLockClosed: ForwardRefExoticComponent<
|
|
|
9
9
|
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
10
|
createElement(
|
|
11
11
|
StyledIcon,
|
|
12
|
-
{
|
|
13
|
-
|
|
12
|
+
{
|
|
13
|
+
...props,
|
|
14
|
+
size,
|
|
15
|
+
viewBox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
ref: forwardRef,
|
|
18
|
+
},
|
|
14
19
|
<circle cx={12} cy={16} r={1} fill='currentColor' />,
|
|
15
|
-
<rect
|
|
16
|
-
width={14}
|
|
17
|
-
height={10}
|
|
18
|
-
x={5}
|
|
19
|
-
y={11}
|
|
20
|
-
stroke='currentColor'
|
|
21
|
-
strokeWidth={2}
|
|
22
|
-
rx={2}
|
|
23
|
-
/>,
|
|
24
20
|
<path
|
|
25
21
|
stroke='currentColor'
|
|
26
22
|
strokeLinecap='round'
|
|
27
23
|
strokeWidth={2}
|
|
28
|
-
d='M16.5 11V5a2 2 0 0 0-2-2h-5a2 2 0 0 0-2
|
|
29
|
-
|
|
30
|
-
<circle cx={12} cy={16} r={1} stroke='currentColor' strokeWidth={2} />
|
|
24
|
+
d='M16.5 11V5a2 2 0 0 0-2-2h-5a2 2 0 0 0-2 2v6M7 21h10a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2Zm6-5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z'
|
|
25
|
+
/>
|
|
31
26
|
)
|
|
32
27
|
)
|
package/react/lock-open.tsx
CHANGED
|
@@ -9,24 +9,19 @@ export const IconLockOpen: ForwardRefExoticComponent<
|
|
|
9
9
|
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
10
|
createElement(
|
|
11
11
|
StyledIcon,
|
|
12
|
-
{
|
|
13
|
-
|
|
12
|
+
{
|
|
13
|
+
...props,
|
|
14
|
+
size,
|
|
15
|
+
viewBox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
ref: forwardRef,
|
|
18
|
+
},
|
|
14
19
|
<circle cx={12} cy={16} r={1} fill='currentColor' />,
|
|
15
|
-
<rect
|
|
16
|
-
width={14}
|
|
17
|
-
height={10}
|
|
18
|
-
x={5}
|
|
19
|
-
y={11}
|
|
20
|
-
stroke='currentColor'
|
|
21
|
-
strokeWidth={2}
|
|
22
|
-
rx={2}
|
|
23
|
-
/>,
|
|
24
20
|
<path
|
|
25
21
|
stroke='currentColor'
|
|
26
22
|
strokeLinecap='round'
|
|
27
23
|
strokeWidth={2}
|
|
28
|
-
d='M16.5 11V5a2 2 0 0 0-2-2h-5a2 2 0 0 0-2 2v1.
|
|
29
|
-
|
|
30
|
-
<circle cx={12} cy={16} r={1} stroke='currentColor' strokeWidth={2} />
|
|
24
|
+
d='M16.5 11V5a2 2 0 0 0-2-2h-5a2 2 0 0 0-2 2v1.5M7 21h10a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2Zm6-5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z'
|
|
25
|
+
/>
|
|
31
26
|
)
|
|
32
27
|
)
|
|
@@ -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 IconMagnifyingGlass: 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='m20 20-5.5-5.5M16 10a6 6 0 1 1-12 0 6 6 0 0 1 12 0Z'
|
|
24
|
+
/>
|
|
25
|
+
)
|
|
26
|
+
)
|
package/react/minus.tsx
CHANGED
|
@@ -9,8 +9,13 @@ export const IconMinus: ForwardRefExoticComponent<
|
|
|
9
9
|
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
10
|
createElement(
|
|
11
11
|
StyledIcon,
|
|
12
|
-
{
|
|
13
|
-
|
|
12
|
+
{
|
|
13
|
+
...props,
|
|
14
|
+
size,
|
|
15
|
+
viewBox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
ref: forwardRef,
|
|
18
|
+
},
|
|
14
19
|
<path
|
|
15
20
|
stroke='currentColor'
|
|
16
21
|
strokeLinecap='round'
|
|
@@ -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 IconPlaceholder: 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='m3 3 18 18m0-18L3 21m18-9a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z'
|
|
24
|
+
/>
|
|
25
|
+
)
|
|
26
|
+
)
|
package/react/plug.tsx
ADDED
|
@@ -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 IconPlug: 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='m12.385 5.9 3.535-3.536m2.122 9.192 3.535-3.535M3.192 20.749l4.95-4.95m2.122-12.02 9.899 9.899-3.536 3.535a5 5 0 0 1-7.07 0l-2.83-2.828a5 5 0 0 1 0-7.071l3.537-3.536Z'
|
|
24
|
+
/>
|
|
25
|
+
)
|
|
26
|
+
)
|
package/react/plus.tsx
CHANGED
|
@@ -9,8 +9,13 @@ export const IconPlus: ForwardRefExoticComponent<
|
|
|
9
9
|
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
10
|
createElement(
|
|
11
11
|
StyledIcon,
|
|
12
|
-
{
|
|
13
|
-
|
|
12
|
+
{
|
|
13
|
+
...props,
|
|
14
|
+
size,
|
|
15
|
+
viewBox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
ref: forwardRef,
|
|
18
|
+
},
|
|
14
19
|
<path
|
|
15
20
|
stroke='currentColor'
|
|
16
21
|
strokeLinecap='round'
|
|
@@ -4,19 +4,23 @@ import type { ForwardRefExoticComponent, RefAttributes } from 'react'
|
|
|
4
4
|
import { StyledIcon } from '../src/icon'
|
|
5
5
|
import type { IconProps } from '../src/icon'
|
|
6
6
|
|
|
7
|
-
export const
|
|
7
|
+
export const IconQuestionMarkCircle: ForwardRefExoticComponent<
|
|
8
8
|
IconProps & RefAttributes<SVGSVGElement>
|
|
9
9
|
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
10
|
createElement(
|
|
11
11
|
StyledIcon,
|
|
12
|
-
{
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
{
|
|
13
|
+
...props,
|
|
14
|
+
size,
|
|
15
|
+
viewBox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
ref: forwardRef,
|
|
18
|
+
},
|
|
15
19
|
<path
|
|
16
20
|
stroke='currentColor'
|
|
17
21
|
strokeLinecap='round'
|
|
18
22
|
strokeWidth={2}
|
|
19
|
-
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'
|
|
23
|
+
d='M9.17 9a3.001 3.001 0 1 1 3.812 3.836c-.522.18-.982.612-.982 1.164v.25m0 2.65v.1m9-5a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z'
|
|
20
24
|
/>
|
|
21
25
|
)
|
|
22
26
|
)
|
|
@@ -9,8 +9,13 @@ export const IconSocialFacebook: ForwardRefExoticComponent<
|
|
|
9
9
|
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
10
|
createElement(
|
|
11
11
|
StyledIcon,
|
|
12
|
-
{
|
|
13
|
-
|
|
12
|
+
{
|
|
13
|
+
...props,
|
|
14
|
+
size,
|
|
15
|
+
viewBox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
ref: forwardRef,
|
|
18
|
+
},
|
|
14
19
|
<path
|
|
15
20
|
fill='currentColor'
|
|
16
21
|
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'
|
|
@@ -9,8 +9,13 @@ export const IconSocialInstagram: ForwardRefExoticComponent<
|
|
|
9
9
|
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
10
|
createElement(
|
|
11
11
|
StyledIcon,
|
|
12
|
-
{
|
|
13
|
-
|
|
12
|
+
{
|
|
13
|
+
...props,
|
|
14
|
+
size,
|
|
15
|
+
viewBox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
ref: forwardRef,
|
|
18
|
+
},
|
|
14
19
|
<path
|
|
15
20
|
fill='currentColor'
|
|
16
21
|
d='M8.667 12a3.333 3.333 0 1 0 6.666 0 3.333 3.333 0 0 0-6.666 0Z'
|