Skip to content

Commit a20c2a6

Browse files
feat: add Paste icon + update Copy icon [LW-10642]
2 parents c5da8ec + bdc11b8 commit a20c2a6

File tree

5 files changed

+31
-8
lines changed

5 files changed

+31
-8
lines changed

src/icons/Copy.tsx

+6-6
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@ import type { SVGProps } from 'react';
33
const SvgCopy = (props: SVGProps<SVGSVGElement>) => (
44
<svg
55
xmlns="http://www.w3.org/2000/svg"
6-
width={18}
7-
height={18}
86
fill="none"
7+
viewBox="0 0 24 24"
98
{...props}
109
>
1110
<path
12-
fill="currentColor"
13-
fillRule="evenodd"
14-
d="M3 2a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h1V7a3 3 0 0 1 3-3h5V3a1 1 0 0 0-1-1zm11 2V3a3 3 0 0 0-3-3H3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h1v1a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3zM7 6a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1z"
15-
clipRule="evenodd"
11+
stroke="currentColor"
12+
strokeLinecap="round"
13+
strokeLinejoin="round"
14+
strokeWidth={2}
15+
d="M8 16H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v2m-6 12h8a2 2 0 0 0 2-2v-8a2 2 0 0 0-2-2h-8a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2"
1616
/>
1717
</svg>
1818
);

src/icons/Paste.tsx

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import * as React from 'react';
2+
import type { SVGProps } from 'react';
3+
const SvgPaste = (props: SVGProps<SVGSVGElement>) => (
4+
<svg
5+
xmlns="http://www.w3.org/2000/svg"
6+
fill="none"
7+
viewBox="0 0 24 24"
8+
{...props}
9+
>
10+
<path
11+
stroke="currentColor"
12+
strokeLinecap="round"
13+
strokeLinejoin="round"
14+
strokeWidth={2}
15+
d="M8 5H6a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-1M8 5a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2M8 5a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2m0 0h2a2 2 0 0 1 2 2v3m2 4H10m0 0 3-3m-3 3 3 3"
16+
/>
17+
</svg>
18+
);
19+
export default SvgPaste;

src/icons/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ export { default as LoadingComponent } from './LoadingComponent';
4444
export { default as MnemonicComponent } from './MnemonicComponent';
4545
export { default as NewspaperGradientComponent } from './NewspaperGradientComponent';
4646
export { default as PaperwalletComponent } from './PaperwalletComponent';
47+
export { default as Paste } from './Paste';
4748
export { default as PencilOutlineComponent } from './PencilOutlineComponent';
4849
export { default as PlainCircleComponent } from './PlainCircleComponent';
4950
export { default as PlusCircleGradientComponent } from './PlusCircleGradientComponent';

src/icons/raw/copy.svg

+2-2
Loading

src/icons/raw/paste.svg

+3
Loading

0 commit comments

Comments
 (0)