Skip to content

Commit 22aa6c6

Browse files
committed
feat(icon-generator): updated dependencies
1 parent 3e76089 commit 22aa6c6

File tree

217 files changed

+4962
-3669
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

217 files changed

+4962
-3669
lines changed
Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
import React from 'react';
22
import { IconProps } from '../IconProps';
33

4-
export const AddCircleOIcon = ({
5-
className = '',
6-
title,
7-
...props
8-
}: IconProps) => {
9-
return (
10-
<svg className={className} viewBox="0 0 24 24" role="img" fill="currentColor" xmlns="http://www.w3.org/2000/svg" {...props}>
11-
{title && <title>{title}</title>}
12-
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z" />
13-
</svg>
14-
);
15-
};
4+
export const AddCircleOIcon = ({ className = '', title, ...props }: IconProps) => (
5+
<svg
6+
className={className}
7+
viewBox="0 0 24 24"
8+
role="img"
9+
fill="currentColor"
10+
xmlns="http://www.w3.org/2000/svg"
11+
{...props}
12+
>
13+
{title && <title>{title}</title>}
14+
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z" />
15+
</svg>
16+
);
Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
import React from 'react';
22
import { IconProps } from '../IconProps';
33

4-
export const AngleDoubleLeftIcon = ({
5-
className = '',
6-
title,
7-
...props
8-
}: IconProps) => {
9-
return (
10-
<svg className={className} viewBox="0 0 24 24" role="img" fill="currentColor" xmlns="http://www.w3.org/2000/svg" {...props}>
11-
{title && <title>{title}</title>}
12-
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z" />
13-
</svg>
14-
);
15-
};
4+
export const AngleDoubleLeftIcon = ({ className = '', title, ...props }: IconProps) => (
5+
<svg
6+
className={className}
7+
viewBox="0 0 24 24"
8+
role="img"
9+
fill="currentColor"
10+
xmlns="http://www.w3.org/2000/svg"
11+
{...props}
12+
>
13+
{title && <title>{title}</title>}
14+
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z" />
15+
</svg>
16+
);
Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
import React from 'react';
22
import { IconProps } from '../IconProps';
33

4-
export const AngleDoubleRightIcon = ({
5-
className = '',
6-
title,
7-
...props
8-
}: IconProps) => {
9-
return (
10-
<svg className={className} viewBox="0 0 24 24" role="img" fill="currentColor" xmlns="http://www.w3.org/2000/svg" {...props}>
11-
{title && <title>{title}</title>}
12-
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z" />
13-
</svg>
14-
);
15-
};
4+
export const AngleDoubleRightIcon = ({ className = '', title, ...props }: IconProps) => (
5+
<svg
6+
className={className}
7+
viewBox="0 0 24 24"
8+
role="img"
9+
fill="currentColor"
10+
xmlns="http://www.w3.org/2000/svg"
11+
{...props}
12+
>
13+
{title && <title>{title}</title>}
14+
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z" />
15+
</svg>
16+
);
Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
import React from 'react';
22
import { IconProps } from '../IconProps';
33

4-
export const AngleDownIcon = ({
5-
className = '',
6-
title,
7-
...props
8-
}: IconProps) => {
9-
return (
10-
<svg className={className} viewBox="0 0 24 24" role="img" fill="currentColor" xmlns="http://www.w3.org/2000/svg" {...props}>
11-
{title && <title>{title}</title>}
12-
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z" />
13-
</svg>
14-
);
15-
};
4+
export const AngleDownIcon = ({ className = '', title, ...props }: IconProps) => (
5+
<svg
6+
className={className}
7+
viewBox="0 0 24 24"
8+
role="img"
9+
fill="currentColor"
10+
xmlns="http://www.w3.org/2000/svg"
11+
{...props}
12+
>
13+
{title && <title>{title}</title>}
14+
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z" />
15+
</svg>
16+
);
Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
import React from 'react';
22
import { IconProps } from '../IconProps';
33

4-
export const AngleLeftIcon = ({
5-
className = '',
6-
title,
7-
...props
8-
}: IconProps) => {
9-
return (
10-
<svg className={className} viewBox="0 0 24 24" role="img" fill="currentColor" xmlns="http://www.w3.org/2000/svg" {...props}>
11-
{title && <title>{title}</title>}
12-
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z" />
13-
</svg>
14-
);
15-
};
4+
export const AngleLeftIcon = ({ className = '', title, ...props }: IconProps) => (
5+
<svg
6+
className={className}
7+
viewBox="0 0 24 24"
8+
role="img"
9+
fill="currentColor"
10+
xmlns="http://www.w3.org/2000/svg"
11+
{...props}
12+
>
13+
{title && <title>{title}</title>}
14+
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z" />
15+
</svg>
16+
);
Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
import React from 'react';
22
import { IconProps } from '../IconProps';
33

4-
export const AngleRightIcon = ({
5-
className = '',
6-
title,
7-
...props
8-
}: IconProps) => {
9-
return (
10-
<svg className={className} viewBox="0 0 24 24" role="img" fill="currentColor" xmlns="http://www.w3.org/2000/svg" {...props}>
11-
{title && <title>{title}</title>}
12-
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z" />
13-
</svg>
14-
);
15-
};
4+
export const AngleRightIcon = ({ className = '', title, ...props }: IconProps) => (
5+
<svg
6+
className={className}
7+
viewBox="0 0 24 24"
8+
role="img"
9+
fill="currentColor"
10+
xmlns="http://www.w3.org/2000/svg"
11+
{...props}
12+
>
13+
{title && <title>{title}</title>}
14+
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z" />
15+
</svg>
16+
);
Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
import React from 'react';
22
import { IconProps } from '../IconProps';
33

4-
export const AngleUpIcon = ({
5-
className = '',
6-
title,
7-
...props
8-
}: IconProps) => {
9-
return (
10-
<svg className={className} viewBox="0 0 24 24" role="img" fill="currentColor" xmlns="http://www.w3.org/2000/svg" {...props}>
11-
{title && <title>{title}</title>}
12-
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z" />
13-
</svg>
14-
);
15-
};
4+
export const AngleUpIcon = ({ className = '', title, ...props }: IconProps) => (
5+
<svg
6+
className={className}
7+
viewBox="0 0 24 24"
8+
role="img"
9+
fill="currentColor"
10+
xmlns="http://www.w3.org/2000/svg"
11+
{...props}
12+
>
13+
{title && <title>{title}</title>}
14+
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z" />
15+
</svg>
16+
);
Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
import React from 'react';
22
import { IconProps } from '../IconProps';
33

4-
export const AnsibleIcon = ({
5-
className = '',
6-
title,
7-
...props
8-
}: IconProps) => {
9-
return (
10-
<svg className={className} viewBox="0 0 24 24" role="img" fill="currentColor" xmlns="http://www.w3.org/2000/svg" {...props}>
11-
{title && <title>{title}</title>}
12-
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z" />
13-
</svg>
14-
);
15-
};
4+
export const AnsibleIcon = ({ className = '', title, ...props }: IconProps) => (
5+
<svg
6+
className={className}
7+
viewBox="0 0 24 24"
8+
role="img"
9+
fill="currentColor"
10+
xmlns="http://www.w3.org/2000/svg"
11+
{...props}
12+
>
13+
{title && <title>{title}</title>}
14+
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z" />
15+
</svg>
16+
);
Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
import React from 'react';
22
import { IconProps } from '../IconProps';
33

4-
export const ArrowCircleDownIcon = ({
5-
className = '',
6-
title,
7-
...props
8-
}: IconProps) => {
9-
return (
10-
<svg className={className} viewBox="0 0 24 24" role="img" fill="currentColor" xmlns="http://www.w3.org/2000/svg" {...props}>
11-
{title && <title>{title}</title>}
12-
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z" />
13-
</svg>
14-
);
15-
};
4+
export const ArrowCircleDownIcon = ({ className = '', title, ...props }: IconProps) => (
5+
<svg
6+
className={className}
7+
viewBox="0 0 24 24"
8+
role="img"
9+
fill="currentColor"
10+
xmlns="http://www.w3.org/2000/svg"
11+
{...props}
12+
>
13+
{title && <title>{title}</title>}
14+
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z" />
15+
</svg>
16+
);
Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
import React from 'react';
22
import { IconProps } from '../IconProps';
33

4-
export const ArrowCircleUpIcon = ({
5-
className = '',
6-
title,
7-
...props
8-
}: IconProps) => {
9-
return (
10-
<svg className={className} viewBox="0 0 24 24" role="img" fill="currentColor" xmlns="http://www.w3.org/2000/svg" {...props}>
11-
{title && <title>{title}</title>}
12-
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z" />
13-
</svg>
14-
);
15-
};
4+
export const ArrowCircleUpIcon = ({ className = '', title, ...props }: IconProps) => (
5+
<svg
6+
className={className}
7+
viewBox="0 0 24 24"
8+
role="img"
9+
fill="currentColor"
10+
xmlns="http://www.w3.org/2000/svg"
11+
{...props}
12+
>
13+
{title && <title>{title}</title>}
14+
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z" />
15+
</svg>
16+
);
Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
import React from 'react';
22
import { IconProps } from '../IconProps';
33

4-
export const ArrowRightIcon = ({
5-
className = '',
6-
title,
7-
...props
8-
}: IconProps) => {
9-
return (
10-
<svg className={className} viewBox="0 0 24 24" role="img" fill="currentColor" xmlns="http://www.w3.org/2000/svg" {...props}>
11-
{title && <title>{title}</title>}
12-
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z" />
13-
</svg>
14-
);
15-
};
4+
export const ArrowRightIcon = ({ className = '', title, ...props }: IconProps) => (
5+
<svg
6+
className={className}
7+
viewBox="0 0 24 24"
8+
role="img"
9+
fill="currentColor"
10+
xmlns="http://www.w3.org/2000/svg"
11+
{...props}
12+
>
13+
{title && <title>{title}</title>}
14+
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z" />
15+
</svg>
16+
);
Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
import React from 'react';
22
import { IconProps } from '../IconProps';
33

4-
export const ArrowsAltVIcon = ({
5-
className = '',
6-
title,
7-
...props
8-
}: IconProps) => {
9-
return (
10-
<svg className={className} viewBox="0 0 24 24" role="img" fill="currentColor" xmlns="http://www.w3.org/2000/svg" {...props}>
11-
{title && <title>{title}</title>}
12-
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z" />
13-
</svg>
14-
);
15-
};
4+
export const ArrowsAltVIcon = ({ className = '', title, ...props }: IconProps) => (
5+
<svg
6+
className={className}
7+
viewBox="0 0 24 24"
8+
role="img"
9+
fill="currentColor"
10+
xmlns="http://www.w3.org/2000/svg"
11+
{...props}
12+
>
13+
{title && <title>{title}</title>}
14+
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z" />
15+
</svg>
16+
);
Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
import React from 'react';
22
import { IconProps } from '../IconProps';
33

4-
export const AsleepIcon = ({
5-
className = '',
6-
title,
7-
...props
8-
}: IconProps) => {
9-
return (
10-
<svg className={className} viewBox="0 0 24 24" role="img" fill="currentColor" xmlns="http://www.w3.org/2000/svg" {...props}>
11-
{title && <title>{title}</title>}
12-
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z" />
13-
</svg>
14-
);
15-
};
4+
export const AsleepIcon = ({ className = '', title, ...props }: IconProps) => (
5+
<svg
6+
className={className}
7+
viewBox="0 0 24 24"
8+
role="img"
9+
fill="currentColor"
10+
xmlns="http://www.w3.org/2000/svg"
11+
{...props}
12+
>
13+
{title && <title>{title}</title>}
14+
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z" />
15+
</svg>
16+
);

0 commit comments

Comments
 (0)