File tree 3 files changed +5
-0
lines changed
3 files changed +5
-0
lines changed Original file line number Diff line number Diff line change 1
1
import type { SVGProps } from "react" ;
2
+ import { PANE_TEXT_COLOR } from '../remotion/TopLanguages/Pane' ;
2
3
export const CheckmarkIcon = ( props : SVGProps < SVGSVGElement > ) => (
3
4
< svg
4
5
xmlns = "http://www.w3.org/2000/svg"
@@ -8,6 +9,7 @@ export const CheckmarkIcon = (props: SVGProps<SVGSVGElement>) => (
8
9
stroke = "currentColor"
9
10
strokeWidth = { 0 }
10
11
viewBox = "0 0 512 512"
12
+ color = { PANE_TEXT_COLOR }
11
13
{ ...props }
12
14
>
13
15
< path
Original file line number Diff line number Diff line change 1
1
import type { SVGProps } from "react" ;
2
+ import { PANE_TEXT_COLOR } from '../remotion/TopLanguages/Pane' ;
2
3
export const CopyIcon = ( props : SVGProps < SVGSVGElement > ) => (
3
4
< svg
4
5
xmlns = "http://www.w3.org/2000/svg"
@@ -7,6 +8,7 @@ export const CopyIcon = (props: SVGProps<SVGSVGElement>) => (
7
8
fill = "currentColor"
8
9
stroke = "currentColor"
9
10
strokeWidth = { 0 }
11
+ color = { PANE_TEXT_COLOR }
10
12
viewBox = "0 0 24 24"
11
13
{ ...props }
12
14
>
Original file line number Diff line number Diff line change @@ -65,6 +65,7 @@ export const SharingAction: React.FC<{
65
65
fontWeight : "600" ,
66
66
backgroundColor : "#D3CFE8" ,
67
67
color : PANE_TEXT_COLOR ,
68
+ padding : "0px 10px"
68
69
} }
69
70
>
70
71
{ props . icon && (
You can’t perform that action at this time.
0 commit comments