Skip to content

Commit 67cf366

Browse files
authored
Merge pull request #221 from dushmanta05/main
2 parents 11d945b + 167c2a1 commit 67cf366

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

icons/CheckmarkIcon.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import type { SVGProps } from "react";
2+
import { PANE_TEXT_COLOR } from '../remotion/TopLanguages/Pane';
23
export const CheckmarkIcon = (props: SVGProps<SVGSVGElement>) => (
34
<svg
45
xmlns="http://www.w3.org/2000/svg"
@@ -8,6 +9,7 @@ export const CheckmarkIcon = (props: SVGProps<SVGSVGElement>) => (
89
stroke="currentColor"
910
strokeWidth={0}
1011
viewBox="0 0 512 512"
12+
color = {PANE_TEXT_COLOR}
1113
{...props}
1214
>
1315
<path

icons/CopyIcon.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import type { SVGProps } from "react";
2+
import { PANE_TEXT_COLOR } from '../remotion/TopLanguages/Pane';
23
export const CopyIcon = (props: SVGProps<SVGSVGElement>) => (
34
<svg
45
xmlns="http://www.w3.org/2000/svg"
@@ -7,6 +8,7 @@ export const CopyIcon = (props: SVGProps<SVGSVGElement>) => (
78
fill="currentColor"
89
stroke="currentColor"
910
strokeWidth={0}
11+
color = {PANE_TEXT_COLOR}
1012
viewBox="0 0 24 24"
1113
{...props}
1214
>

vite/VideoPage/Actions/SharingAction.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ export const SharingAction: React.FC<{
6565
fontWeight: "600",
6666
backgroundColor: "#D3CFE8",
6767
color: PANE_TEXT_COLOR,
68+
padding: "0px 10px"
6869
}}
6970
>
7071
{props.icon && (

0 commit comments

Comments
 (0)