Skip to content

Commit 67226be

Browse files
author
Lizzie Lerwill
committed
feat: generate EditPenIcon
1 parent 84d4075 commit 67226be

File tree

85 files changed

+1874
-4060
lines changed

Some content is hidden

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

85 files changed

+1874
-4060
lines changed

package-lock.json

Lines changed: 1840 additions & 1897 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +0,0 @@
1-
// DO NOT EDIT. This file was generated by running `npm run generate`.;
2-
import * as React from 'react';
3-
import { get } from '../../utils/themeGet';
4-
import { IconProps } from '../IconProps';
5-
type Props = IconProps;
6-
const CheckCircleFilledIcon: React.FC<Props> = ({ size = 'medium', color = 'inherit', ...rest }) => {
7-
const props = { ...rest, color };
8-
const sizePx = Number.isFinite(size as number)
9-
? size
10-
: get(`iconSizes.${size}`)(props) || get('iconSizes.medium')(props);
11-
return (
12-
<svg
13-
{...props}
14-
width={sizePx}
15-
height={sizePx}
16-
viewBox="0 0 24 24"
17-
fill="none"
18-
xmlns="http://www.w3.org/2000/svg"
19-
>
20-
<path
21-
d="M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zm3.899 6.293l-4.913 4.912-2.283-2.258-1.406 1.421 3.696 3.658 6.32-6.319-1.414-1.414z"
22-
fill="currentColor"
23-
/>
24-
</svg>
25-
);
26-
};
27-
export default CheckCircleFilledIcon;
Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +0,0 @@
1-
// DO NOT EDIT. This file was generated by running `npm run generate`.;
2-
import * as React from 'react';
3-
import { get } from '../../utils/themeGet';
4-
import { IconProps } from '../IconProps';
5-
type Props = IconProps;
6-
const CheckCircleIcon: React.FC<Props> = ({ size = 'medium', color = 'inherit', ...rest }) => {
7-
const props = { ...rest, color };
8-
const sizePx = Number.isFinite(size as number)
9-
? size
10-
: get(`iconSizes.${size}`)(props) || get('iconSizes.medium')(props);
11-
return (
12-
<svg
13-
{...props}
14-
width={sizePx}
15-
height={sizePx}
16-
viewBox="0 0 24 24"
17-
fill="none"
18-
xmlns="http://www.w3.org/2000/svg"
19-
>
20-
<path
21-
d="M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zm0 2a8 8 0 100 16 8 8 0 000-16zm3.899 4.293l1.414 1.414-6.32 6.319-3.696-3.658 1.406-1.421 2.283 2.258 4.912-4.912z"
22-
fill="currentColor"
23-
/>
24-
</svg>
25-
);
26-
};
27-
export default CheckCircleIcon;

src/icons/actions/CheckIcon.tsx

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +0,0 @@
1-
// DO NOT EDIT. This file was generated by running `npm run generate`.;
2-
import * as React from 'react';
3-
import { get } from '../../utils/themeGet';
4-
import { IconProps } from '../IconProps';
5-
type Props = IconProps;
6-
const CheckIcon: React.FC<Props> = ({ size = 'medium', color = 'inherit', ...rest }) => {
7-
const props = { ...rest, color };
8-
const sizePx = Number.isFinite(size as number)
9-
? size
10-
: get(`iconSizes.${size}`)(props) || get('iconSizes.medium')(props);
11-
return (
12-
<svg
13-
{...props}
14-
width={sizePx}
15-
height={sizePx}
16-
viewBox="0 0 24 24"
17-
fill="none"
18-
xmlns="http://www.w3.org/2000/svg"
19-
>
20-
<path d="M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z" fill="currentColor" />
21-
</svg>
22-
);
23-
};
24-
export default CheckIcon;

src/icons/actions/CopyIcon.tsx

Lines changed: 0 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +0,0 @@
1-
// DO NOT EDIT. This file was generated by running `npm run generate`.;
2-
import * as React from 'react';
3-
import { get } from '../../utils/themeGet';
4-
import { IconProps } from '../IconProps';
5-
type Props = IconProps;
6-
const CopyIcon: React.FC<Props> = ({ size = 'medium', color = 'inherit', ...rest }) => {
7-
const props = { ...rest, color };
8-
const sizePx = Number.isFinite(size as number)
9-
? size
10-
: get(`iconSizes.${size}`)(props) || get('iconSizes.medium')(props);
11-
return (
12-
<svg
13-
{...props}
14-
width={sizePx}
15-
height={sizePx}
16-
viewBox="0 0 24 24"
17-
fill="none"
18-
xmlns="http://www.w3.org/2000/svg"
19-
>
20-
<path
21-
fillRule="evenodd"
22-
clipRule="evenodd"
23-
d="M13 3H5v13h2v2H5a2 2 0 01-2-2V3a2 2 0 012-2h8a2 2 0 012 2v2h-2V3zm-2 4a2 2 0 00-2 2v12a2 2 0 002 2h8a2 2 0 002-2V9a2 2 0 00-2-2h-8zm0 2v12h8V9h-8z"
24-
fill="currentColor"
25-
/>
26-
</svg>
27-
);
28-
};
29-
export default CopyIcon;

src/icons/actions/DownloadIcon.tsx

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +0,0 @@
1-
// DO NOT EDIT. This file was generated by running `npm run generate`.;
2-
import * as React from 'react';
3-
import { get } from '../../utils/themeGet';
4-
import { IconProps } from '../IconProps';
5-
type Props = IconProps;
6-
const DownloadIcon: React.FC<Props> = ({ size = 'medium', color = 'inherit', ...rest }) => {
7-
const props = { ...rest, color };
8-
const sizePx = Number.isFinite(size as number)
9-
? size
10-
: get(`iconSizes.${size}`)(props) || get('iconSizes.medium')(props);
11-
return (
12-
<svg
13-
{...props}
14-
width={sizePx}
15-
height={sizePx}
16-
viewBox="0 0 24 24"
17-
fill="none"
18-
xmlns="http://www.w3.org/2000/svg"
19-
>
20-
<path
21-
d="M19 19v2H5v-2h14zM13 3v10.436l5-4.445v2.676L12 17l-6-5.333V8.991l5 4.445V3h2z"
22-
fill="currentColor"
23-
/>
24-
</svg>
25-
);
26-
};
27-
export default DownloadIcon;

src/icons/actions/EnvelopeIcon.tsx

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +0,0 @@
1-
// DO NOT EDIT. This file was generated by running `npm run generate`.;
2-
import * as React from 'react';
3-
import { get } from '../../utils/themeGet';
4-
import { IconProps } from '../IconProps';
5-
type Props = IconProps;
6-
const EnvelopeIcon: React.FC<Props> = ({ size = 'medium', color = 'inherit', ...rest }) => {
7-
const props = { ...rest, color };
8-
const sizePx = Number.isFinite(size as number)
9-
? size
10-
: get(`iconSizes.${size}`)(props) || get('iconSizes.medium')(props);
11-
return (
12-
<svg
13-
{...props}
14-
width={sizePx}
15-
height={sizePx}
16-
viewBox="0 0 24 24"
17-
fill="none"
18-
xmlns="http://www.w3.org/2000/svg"
19-
>
20-
<path
21-
d="M22 5v14H2V5h20zm-2 3.249L15 12a5 5 0 01-6 0L4 8.249V17h16V8.249zM18.332 7H5.668l4.532 3.4a3 3 0 003.6 0L18.332 7z"
22-
fill="currentColor"
23-
/>
24-
</svg>
25-
);
26-
};
27-
export default EnvelopeIcon;

src/icons/actions/ExitIcon.tsx

Lines changed: 0 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +0,0 @@
1-
// DO NOT EDIT. This file was generated by running `npm run generate`.;
2-
import * as React from 'react';
3-
import { get } from '../../utils/themeGet';
4-
import { IconProps } from '../IconProps';
5-
type Props = IconProps;
6-
const ExitIcon: React.FC<Props> = ({ size = 'medium', color = 'inherit', ...rest }) => {
7-
const props = { ...rest, color };
8-
const sizePx = Number.isFinite(size as number)
9-
? size
10-
: get(`iconSizes.${size}`)(props) || get('iconSizes.medium')(props);
11-
return (
12-
<svg
13-
{...props}
14-
width={sizePx}
15-
height={sizePx}
16-
viewBox="0 0 24 24"
17-
fill="none"
18-
xmlns="http://www.w3.org/2000/svg"
19-
>
20-
<path
21-
fillRule="evenodd"
22-
clipRule="evenodd"
23-
d="M16 17v5H2V2H16v5h-2V4H4v16h10v-3h2zm-7-4h12l-3 4h2l4-5-4-5h-2l3 4H9v2z"
24-
fill="currentColor"
25-
/>
26-
</svg>
27-
);
28-
};
29-
export default ExitIcon;
Lines changed: 0 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +0,0 @@
1-
// DO NOT EDIT. This file was generated by running `npm run generate`.;
2-
import * as React from 'react';
3-
import { get } from '../../utils/themeGet';
4-
import { IconProps } from '../IconProps';
5-
type Props = IconProps;
6-
const EyeClosedIcon: React.FC<Props> = ({ size = 'medium', color = 'inherit', ...rest }) => {
7-
const props = { ...rest, color };
8-
const sizePx = Number.isFinite(size as number)
9-
? size
10-
: get(`iconSizes.${size}`)(props) || get('iconSizes.medium')(props);
11-
return (
12-
<svg
13-
{...props}
14-
width={sizePx}
15-
height={sizePx}
16-
viewBox="0 0 24 24"
17-
fill="none"
18-
xmlns="http://www.w3.org/2000/svg"
19-
>
20-
<path
21-
d="M12 20c-5.035 0-9.28-3.383-10.586-8h2.098a9.005 9.005 0 0016.976 0h2.098c-1.306 4.617-5.55 8-10.586 8z"
22-
fill="currentColor"
23-
/>
24-
<path d="M2.361 14.305c.163.295.339.581.527.859L.926 16.729l-.624-.782 2.06-1.642z" fill="currentColor" />
25-
<path
26-
d="M.926 16.73l1.962-1.565c.188.276.388.544.599.802L1.55 17.51l-.624-.782zM4.896 20.18l.982-2.04c.278.187.564.36.859.522l-.94 1.952-.9-.434zM5.797 20.614l.94-1.952c.292.159.592.306.9.439l-.939 1.947-.9-.434z"
27-
fill="currentColor"
28-
/>
29-
<path
30-
fillRule="evenodd"
31-
clipRule="evenodd"
32-
d="M10.872 22v-2.057c.329.034.662.053 1 .056V22h-1zm1 0v-2a11.026 11.026 0 001-.034V22h-1zM17.045 21.048l-.895-1.858c.31-.126.613-.266.908-.42l.888 1.844-.9.434zm.901-.434l-.888-1.843c.298-.155.588-.323.87-.503l.919 1.912-.9.434z"
33-
fill="currentColor"
34-
/>
35-
<path
36-
d="M22.194 17.511l-1.783-1.421c.215-.255.418-.52.61-.793l1.796 1.432-.623.782zM23.44 15.947l-.623.782-1.796-1.433c.192-.274.372-.558.538-.85l1.882 1.501z"
37-
fill="currentColor"
38-
/>
39-
</svg>
40-
);
41-
};
42-
export default EyeClosedIcon;

src/icons/actions/EyeIcon.tsx

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +0,0 @@
1-
// DO NOT EDIT. This file was generated by running `npm run generate`.;
2-
import * as React from 'react';
3-
import { get } from '../../utils/themeGet';
4-
import { IconProps } from '../IconProps';
5-
type Props = IconProps;
6-
const EyeIcon: React.FC<Props> = ({ size = 'medium', color = 'inherit', ...rest }) => {
7-
const props = { ...rest, color };
8-
const sizePx = Number.isFinite(size as number)
9-
? size
10-
: get(`iconSizes.${size}`)(props) || get('iconSizes.medium')(props);
11-
return (
12-
<svg
13-
{...props}
14-
width={sizePx}
15-
height={sizePx}
16-
viewBox="0 0 24 24"
17-
fill="none"
18-
xmlns="http://www.w3.org/2000/svg"
19-
>
20-
<path
21-
d="M12 4c5.035 0 9.28 3.383 10.586 8-1.307 4.618-5.551 8-10.586 8s-9.28-3.383-10.586-8C2.721 7.382 6.965 4 12 4zm0 2a9.006 9.006 0 00-8.406 5.775L3.511 12l.083.226a9.007 9.007 0 008.13 5.77L12 18a9.006 9.006 0 008.406-5.775l.082-.226-.082-.224a9.007 9.007 0 00-8.13-5.77L12 6zm0 2a4 4 0 110 8 4 4 0 010-8zm0 2a2 2 0 100 4 2 2 0 000-4z"
22-
fill="currentColor"
23-
/>
24-
</svg>
25-
);
26-
};
27-
export default EyeIcon;

0 commit comments

Comments
 (0)