@mirohq/design-system-icons 0.5.0 → 0.6.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 +842 -12
- package/dist/main.js.map +1 -1
- package/dist/module.js +813 -13
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +61 -1
- package/package.json +1 -1
- package/react/add-line-bottom.tsx +33 -0
- package/react/add-line-right.tsx +33 -0
- package/react/align-center-horizontal.tsx +32 -0
- package/react/align-center-vertical.tsx +32 -0
- package/react/bookmark.tsx +34 -0
- package/react/distribute-horizontal.tsx +27 -0
- package/react/distribute-vertical.tsx +35 -0
- package/react/grid-four.tsx +34 -0
- package/react/grid-six.tsx +34 -0
- package/react/index.ts +30 -0
- package/react/layout.tsx +34 -0
- package/react/lines-three-horizontal-line-vertical-center.tsx +34 -0
- package/react/lines-three-horizontal.tsx +33 -0
- package/react/lines-three-vertical.tsx +33 -0
- package/react/rectangles-three-aligned.tsx +34 -0
- package/react/rectangles-three-free.tsx +34 -0
- package/react/rectangles-three-overlap.tsx +34 -0
- package/react/rectangles-two-line.tsx +34 -0
- package/react/split-vertical.tsx +34 -0
- package/react/square-line-square-dashed.tsx +34 -0
- package/react/squares-group.tsx +32 -0
- package/react/squares-merge.tsx +31 -0
- package/react/squares-two-overlap.tsx +34 -0
- package/react/squares-ungroup.tsx +31 -0
- package/react/squares-unmerge.tsx +34 -0
- package/react/stack.tsx +34 -0
- package/react/text-h-one.tsx +34 -0
- package/react/text-h-three.tsx +34 -0
- package/react/text-h-two.tsx +34 -0
- package/react/view-center.tsx +28 -0
- package/react/view-side-left.tsx +28 -0
- package/svg/24/add-line-bottom.svg +1 -0
- package/svg/24/add-line-right.svg +1 -0
- package/svg/24/align-center-horizontal.svg +1 -0
- package/svg/24/align-center-vertical.svg +1 -0
- package/svg/24/bookmark.svg +1 -0
- package/svg/24/distribute-horizontal.svg +1 -0
- package/svg/24/distribute-vertical.svg +1 -0
- package/svg/24/grid-four.svg +1 -0
- package/svg/24/grid-six.svg +1 -0
- package/svg/24/layout.svg +1 -0
- package/svg/24/lines-three-horizontal-line-vertical-center.svg +1 -0
- package/svg/24/lines-three-horizontal.svg +1 -0
- package/svg/24/lines-three-vertical.svg +1 -0
- package/svg/24/rectangles-three-aligned.svg +1 -0
- package/svg/24/rectangles-three-free.svg +1 -0
- package/svg/24/rectangles-three-overlap.svg +1 -0
- package/svg/24/rectangles-two-line.svg +1 -0
- package/svg/24/split-vertical.svg +1 -0
- package/svg/24/square-line-square-dashed.svg +1 -0
- package/svg/24/squares-group.svg +1 -0
- package/svg/24/squares-merge.svg +1 -0
- package/svg/24/squares-two-overlap.svg +1 -0
- package/svg/24/squares-ungroup.svg +1 -0
- package/svg/24/squares-unmerge.svg +1 -0
- package/svg/24/stack.svg +1 -0
- package/svg/24/text-h-one.svg +1 -0
- package/svg/24/text-h-three.svg +1 -0
- package/svg/24/text-h-two.svg +1 -0
- package/svg/24/view-center.svg +1 -0
- package/svg/24/view-side-left.svg +1 -0
- package/svg/meta.json +265 -0
|
@@ -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 IconLinesThreeVertical: 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 4v16M12 4v16M4 4v16'
|
|
25
|
+
/>
|
|
26
|
+
</g>,
|
|
27
|
+
<defs>
|
|
28
|
+
<clipPath id='a'>
|
|
29
|
+
<path d='M0 0h24v24H0z' />
|
|
30
|
+
</clipPath>
|
|
31
|
+
</defs>
|
|
32
|
+
)
|
|
33
|
+
)
|
|
@@ -0,0 +1,34 @@
|
|
|
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 IconRectanglesThreeAligned: 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
|
|
20
|
+
stroke='currentColor'
|
|
21
|
+
strokeLinecap='round'
|
|
22
|
+
strokeLinejoin='round'
|
|
23
|
+
strokeWidth={2}
|
|
24
|
+
clipPath='url(#a)'
|
|
25
|
+
>
|
|
26
|
+
<path d='M11 4H3v8h8V4Zm6.063 12h-14v5h14v-5ZM19 4h-4v4h4V4Z' />
|
|
27
|
+
</g>,
|
|
28
|
+
<defs>
|
|
29
|
+
<clipPath id='a'>
|
|
30
|
+
<path d='M0 0h24v24H0z' />
|
|
31
|
+
</clipPath>
|
|
32
|
+
</defs>
|
|
33
|
+
)
|
|
34
|
+
)
|
|
@@ -0,0 +1,34 @@
|
|
|
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 IconRectanglesThreeFree: 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
|
|
20
|
+
stroke='currentColor'
|
|
21
|
+
strokeLinecap='round'
|
|
22
|
+
strokeLinejoin='round'
|
|
23
|
+
strokeWidth={2}
|
|
24
|
+
clipPath='url(#a)'
|
|
25
|
+
>
|
|
26
|
+
<path d='m12.818 4.852-7.69-2.205-2.205 7.69 7.69 2.205 2.205-7.69ZM19.063 16h-14v5h14v-5Zm.649-9.92-3.845 1.102 1.102 3.845 3.845-1.102-1.102-3.845Z' />
|
|
27
|
+
</g>,
|
|
28
|
+
<defs>
|
|
29
|
+
<clipPath id='a'>
|
|
30
|
+
<path d='M0 0h24v24H0z' />
|
|
31
|
+
</clipPath>
|
|
32
|
+
</defs>
|
|
33
|
+
)
|
|
34
|
+
)
|
|
@@ -0,0 +1,34 @@
|
|
|
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 IconRectanglesThreeOverlap: 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
|
+
strokeLinejoin='round'
|
|
24
|
+
strokeWidth={2}
|
|
25
|
+
d='M8 11H4v10h9v-4m-5-6h5v6m-5-6V7h4m1 10h4v-4m-5-6h5v6m-5-6V3h9v10h-4'
|
|
26
|
+
/>
|
|
27
|
+
</g>,
|
|
28
|
+
<defs>
|
|
29
|
+
<clipPath id='a'>
|
|
30
|
+
<path d='M0 0h24v24H0z' />
|
|
31
|
+
</clipPath>
|
|
32
|
+
</defs>
|
|
33
|
+
)
|
|
34
|
+
)
|
|
@@ -0,0 +1,34 @@
|
|
|
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 IconRectanglesTwoLine: 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
|
+
strokeLinejoin='round'
|
|
24
|
+
strokeWidth={2}
|
|
25
|
+
d='M21 3v18M3.25 4h11.5a.25.25 0 0 1 .25.25v5.5a.25.25 0 0 1-.25.25H3.25A.25.25 0 0 1 3 9.75v-5.5A.25.25 0 0 1 3.25 4Zm0 10h11.5a.25.25 0 0 1 .25.25v5.5a.25.25 0 0 1-.25.25H3.25a.25.25 0 0 1-.25-.25v-5.5a.25.25 0 0 1 .25-.25Z'
|
|
26
|
+
/>
|
|
27
|
+
</g>,
|
|
28
|
+
<defs>
|
|
29
|
+
<clipPath id='a'>
|
|
30
|
+
<path d='M0 0h24v24H0z' />
|
|
31
|
+
</clipPath>
|
|
32
|
+
</defs>
|
|
33
|
+
)
|
|
34
|
+
)
|
|
@@ -0,0 +1,34 @@
|
|
|
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 IconSplitVertical: 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
|
+
strokeLinejoin='round'
|
|
24
|
+
strokeWidth={2}
|
|
25
|
+
d='M5 6.5V4h14v2.5M2 12h20M5 17.5V20h14v-2.5'
|
|
26
|
+
/>
|
|
27
|
+
</g>,
|
|
28
|
+
<defs>
|
|
29
|
+
<clipPath id='a'>
|
|
30
|
+
<path d='M0 0h24v24H0z' />
|
|
31
|
+
</clipPath>
|
|
32
|
+
</defs>
|
|
33
|
+
)
|
|
34
|
+
)
|
|
@@ -0,0 +1,34 @@
|
|
|
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 IconSquareLineSquareDashed: 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
|
+
strokeLinejoin='round'
|
|
24
|
+
strokeWidth={2}
|
|
25
|
+
d='M18 3h3v3m0 4v4m0 4v3h-3m-4 0h-4m-4 0H3v-3M3 3h11v11H3V3Z'
|
|
26
|
+
/>
|
|
27
|
+
</g>,
|
|
28
|
+
<defs>
|
|
29
|
+
<clipPath id='a'>
|
|
30
|
+
<path d='M0 0h24v24H0z' />
|
|
31
|
+
</clipPath>
|
|
32
|
+
</defs>
|
|
33
|
+
)
|
|
34
|
+
)
|
|
@@ -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 IconSquaresGroup: 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
|
+
strokeLinejoin='round'
|
|
23
|
+
strokeWidth={2}
|
|
24
|
+
d='M20 4H4v16h16V4Z'
|
|
25
|
+
/>,
|
|
26
|
+
<path
|
|
27
|
+
fill='currentColor'
|
|
28
|
+
d='M2 2h3v3H2V2Zm17 0h3v3h-3V2Zm0 17h3v3h-3v-3ZM2 19h3v3H2v-3Zm9-12h6v6h-6V7Z'
|
|
29
|
+
/>,
|
|
30
|
+
<path fill='currentColor' d='M7 11h3v3h3v3H7v-6Z' />
|
|
31
|
+
)
|
|
32
|
+
)
|
|
@@ -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 IconSquaresMerge: 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
|
+
fill='currentColor'
|
|
22
|
+
d='M9 3V2a1 1 0 0 0-1 1h1Zm12 0h1a1 1 0 0 0-1-1v1Zm0 12v1a1 1 0 0 0 1-1h-1Zm-6 0v-1h-1v1h1Zm0 6v1a1 1 0 0 0 1-1h-1ZM3 21H2a1 1 0 0 0 1 1v-1ZM3 9V8a1 1 0 0 0-1 1h1Zm6 0v1h1V9H9Zm0-5h12V2H9v2Zm11-1v12h2V3h-2Zm1 11h-6v2h6v-2Zm-7 1v6h2v-6h-2Zm1 5H3v2h12v-2ZM4 21V9H2v12h2ZM3 10h6V8H3v2Zm7-1V3H8v6h2Z'
|
|
23
|
+
/>
|
|
24
|
+
</g>,
|
|
25
|
+
<defs>
|
|
26
|
+
<clipPath id='a'>
|
|
27
|
+
<path d='M0 0h24v24H0z' />
|
|
28
|
+
</clipPath>
|
|
29
|
+
</defs>
|
|
30
|
+
)
|
|
31
|
+
)
|
|
@@ -0,0 +1,34 @@
|
|
|
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 IconSquaresTwoOverlap: 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
|
+
strokeLinejoin='round'
|
|
24
|
+
strokeWidth={2}
|
|
25
|
+
d='M9 5V3h12v12h-2M3 9h12v12H3V9Z'
|
|
26
|
+
/>
|
|
27
|
+
</g>,
|
|
28
|
+
<defs>
|
|
29
|
+
<clipPath id='a'>
|
|
30
|
+
<path d='M0 0h24v24H0z' />
|
|
31
|
+
</clipPath>
|
|
32
|
+
</defs>
|
|
33
|
+
)
|
|
34
|
+
)
|
|
@@ -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 IconSquaresUngroup: 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
|
+
strokeLinejoin='round'
|
|
23
|
+
strokeWidth={2}
|
|
24
|
+
d='M10 10v4h4m-4-4V4h10v10h-6m-4-4H4v10h10v-6'
|
|
25
|
+
/>,
|
|
26
|
+
<path
|
|
27
|
+
fill='currentColor'
|
|
28
|
+
d='M8 2h3v3H8V2Zm11 0h3v3h-3V2Zm0 11h3v3h-3v-3ZM8 13h3v3H8v-3ZM2 8h3v3H2V8Zm0 11h3v3H2v-3Zm11 0h3v3h-3v-3Z'
|
|
29
|
+
/>
|
|
30
|
+
)
|
|
31
|
+
)
|
|
@@ -0,0 +1,34 @@
|
|
|
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 IconSquaresUnmerge: 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
|
+
strokeLinejoin='round'
|
|
24
|
+
strokeWidth={2}
|
|
25
|
+
d='M9 3h12v12H9V3Zm6 6H3v12h12V9Z'
|
|
26
|
+
/>
|
|
27
|
+
</g>,
|
|
28
|
+
<defs>
|
|
29
|
+
<clipPath id='a'>
|
|
30
|
+
<path d='M0 0h24v24H0z' />
|
|
31
|
+
</clipPath>
|
|
32
|
+
</defs>
|
|
33
|
+
)
|
|
34
|
+
)
|
package/react/stack.tsx
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
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 IconStack: 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
|
+
strokeLinejoin='round'
|
|
24
|
+
strokeWidth={2}
|
|
25
|
+
d='m18 14 4 1.5L12 20 2 15.5 6 14m6-10 10 4.5L12 13 2 8.5 12 4Z'
|
|
26
|
+
/>
|
|
27
|
+
</g>,
|
|
28
|
+
<defs>
|
|
29
|
+
<clipPath id='a'>
|
|
30
|
+
<path d='M0 0h24v24H0z' />
|
|
31
|
+
</clipPath>
|
|
32
|
+
</defs>
|
|
33
|
+
)
|
|
34
|
+
)
|
|
@@ -0,0 +1,34 @@
|
|
|
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 IconTextHOne: 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
|
+
strokeLinejoin='round'
|
|
24
|
+
strokeWidth={2}
|
|
25
|
+
d='M5 6v6m0 6v-6m0 0h7m0 0V6m0 6v6m5-12h3v12'
|
|
26
|
+
/>
|
|
27
|
+
</g>,
|
|
28
|
+
<defs>
|
|
29
|
+
<clipPath id='a'>
|
|
30
|
+
<path d='M0 0h24v24H0z' />
|
|
31
|
+
</clipPath>
|
|
32
|
+
</defs>
|
|
33
|
+
)
|
|
34
|
+
)
|
|
@@ -0,0 +1,34 @@
|
|
|
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 IconTextHThree: 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
|
+
strokeLinejoin='round'
|
|
24
|
+
strokeWidth={2}
|
|
25
|
+
d='M4 6v6m0 6v-6m0 0h7m0 0V6m0 6v6m4-12h5v6m-5 0h5m0 0v6h-5'
|
|
26
|
+
/>
|
|
27
|
+
</g>,
|
|
28
|
+
<defs>
|
|
29
|
+
<clipPath id='a'>
|
|
30
|
+
<path d='M0 0h24v24H0z' />
|
|
31
|
+
</clipPath>
|
|
32
|
+
</defs>
|
|
33
|
+
)
|
|
34
|
+
)
|
|
@@ -0,0 +1,34 @@
|
|
|
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 IconTextHTwo: 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
|
+
strokeLinejoin='round'
|
|
24
|
+
strokeWidth={2}
|
|
25
|
+
d='M4 6v6m0 6v-6m0 0h7m0 0V6m0 6v6m4-12h5v6h-5v6h5'
|
|
26
|
+
/>
|
|
27
|
+
</g>,
|
|
28
|
+
<defs>
|
|
29
|
+
<clipPath id='a'>
|
|
30
|
+
<path d='M0 0h24v24H0z' />
|
|
31
|
+
</clipPath>
|
|
32
|
+
</defs>
|
|
33
|
+
)
|
|
34
|
+
)
|
|
@@ -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 IconViewCenter: 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
|
+
strokeLinejoin='round'
|
|
23
|
+
strokeWidth={2}
|
|
24
|
+
d='M19 4H5a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2Z'
|
|
25
|
+
/>,
|
|
26
|
+
<rect width={10} height={8} x={7} y={8} fill='currentColor' rx={1} />
|
|
27
|
+
)
|
|
28
|
+
)
|
|
@@ -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 IconViewSideLeft: 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
|
+
strokeLinejoin='round'
|
|
23
|
+
strokeWidth={2}
|
|
24
|
+
d='M19 4H5a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2Z'
|
|
25
|
+
/>,
|
|
26
|
+
<rect width={6} height={10} x={6} y={7} fill='currentColor' rx={1} />
|
|
27
|
+
)
|
|
28
|
+
)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><g clip-path="url(#a)"><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M21 5H3m13 10h-4m0 0H8m4 0v-4m0 4v4"/></g><defs><clipPath id="a"><path fill="none" d="M0 0h24v24H0z"/></clipPath></defs></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><g clip-path="url(#a)"><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M5 3v18M15 8v4m0 0v4m0-4h-4m4 0h4"/></g><defs><clipPath id="a"><path fill="none" d="M0 0h24v24H0z"/></clipPath></defs></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1.414" stroke-width="2" d="M12 3v18"/><path fill="currentColor" d="M19.5 7a1.5 1.5 0 0 1 0 3h-15a1.5 1.5 0 1 1 0-3h15ZM16.5 14a1.5 1.5 0 0 1 0 3h-9a1.5 1.5 0 0 1 0-3h9Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1.414" stroke-width="2" d="M3 12h18"/><path fill="currentColor" d="M7 4.5a1.5 1.5 0 1 1 3 0v15a1.5 1.5 0 0 1-3 0v-15ZM14 7.5a1.5 1.5 0 0 1 3 0v9a1.5 1.5 0 0 1-3 0v-9Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><g clip-path="url(#a)"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17.5 3h-11a.5.5 0 0 0-.5.5V21l6-4.5 6 4.5V3.5a.5.5 0 0 0-.5-.5Z"/></g><defs><clipPath id="a"><path fill="none" d="M0 0h24v24H0z"/></clipPath></defs></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M4 3v18M20 3v18"/><rect width="4" height="10" x="10" y="7" fill="currentColor" rx="2"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M21 4H3m18 16H3"/><rect width="4" height="10" x="17" y="10" fill="currentColor" rx="2" transform="rotate(90 17 10)"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><g clip-path="url(#a)"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 3H3.25a.25.25 0 0 0-.25.25V12m9-9h8.75a.25.25 0 0 1 .25.25V12m-9-9v18m0 0h8.75a.25.25 0 0 0 .25-.25V12m-9 9H3.25a.25.25 0 0 1-.25-.25V12m0 0h18"/></g><defs><clipPath id="a"><path fill="none" d="M0 0h24v24H0z"/></clipPath></defs></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><g clip-path="url(#a)"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 3H3.25a.25.25 0 0 0-.25.25V9m9-6h8.75a.25.25 0 0 1 .25.25V9m-9-6v18m0 0h8.75a.25.25 0 0 0 .25-.25V15m-9 6H3.25a.25.25 0 0 1-.25-.25V15m0-6h18M3 9v6m18-6v6M3 15h18"/></g><defs><clipPath id="a"><path fill="none" d="M0 0h24v24H0z"/></clipPath></defs></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><g clip-path="url(#a)"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 9v12h6M3 9V3h18v6M3 9h6m12 0v12H9M21 9H9m0 0v12"/></g><defs><clipPath id="a"><path fill="none" d="M0 0h24v24H0z"/></clipPath></defs></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><g clip-path="url(#a)"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 5h8m8 0h-8m-8 7h16M4 19h8m8 0h-8m0-14v14"/></g><defs><clipPath id="a"><path fill="none" d="M0 0h24v24H0z"/></clipPath></defs></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><g clip-path="url(#a)"><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M4 5h16M4 12h16M4 19h16"/></g><defs><clipPath id="a"><path fill="none" d="M0 0h24v24H0z"/></clipPath></defs></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><g clip-path="url(#a)"><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M20 4v16M12 4v16M4 4v16"/></g><defs><clipPath id="a"><path fill="none" d="M0 0h24v24H0z"/></clipPath></defs></svg>
|