File tree Expand file tree Collapse file tree 5 files changed +31
-8
lines changed Expand file tree Collapse file tree 5 files changed +31
-8
lines changed Original file line number Diff line number Diff line change @@ -3,16 +3,16 @@ import type { SVGProps } from 'react';
33const 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) ;
Original file line number Diff line number Diff line change 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 ;
Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ export { default as LoadingComponent } from './LoadingComponent';
4444export { default as MnemonicComponent } from './MnemonicComponent' ;
4545export { default as NewspaperGradientComponent } from './NewspaperGradientComponent' ;
4646export { default as PaperwalletComponent } from './PaperwalletComponent' ;
47+ export { default as Paste } from './Paste' ;
4748export { default as PencilOutlineComponent } from './PencilOutlineComponent' ;
4849export { default as PlainCircleComponent } from './PlainCircleComponent' ;
4950export { default as PlusCircleGradientComponent } from './PlusCircleGradientComponent' ;
You can’t perform that action at this time.
0 commit comments