File tree 5 files changed +31
-8
lines changed
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';
3
3
const SvgCopy = ( props : SVGProps < SVGSVGElement > ) => (
4
4
< svg
5
5
xmlns = "http://www.w3.org/2000/svg"
6
- width = { 18 }
7
- height = { 18 }
8
6
fill = "none"
7
+ viewBox = "0 0 24 24"
9
8
{ ...props }
10
9
>
11
10
< 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"
16
16
/>
17
17
</ svg >
18
18
) ;
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';
44
44
export { default as MnemonicComponent } from './MnemonicComponent' ;
45
45
export { default as NewspaperGradientComponent } from './NewspaperGradientComponent' ;
46
46
export { default as PaperwalletComponent } from './PaperwalletComponent' ;
47
+ export { default as Paste } from './Paste' ;
47
48
export { default as PencilOutlineComponent } from './PencilOutlineComponent' ;
48
49
export { default as PlainCircleComponent } from './PlainCircleComponent' ;
49
50
export { default as PlusCircleGradientComponent } from './PlusCircleGradientComponent' ;
You can’t perform that action at this time.
0 commit comments