Skip to content

Commit 26c6368

Browse files
committed
chore: 🎨 changed default fill color
1 parent 726d808 commit 26c6368

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

src/icons/CaretLeft.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import Svg, { Path } from "react-native-svg";
33

44
import { IconProps } from "../utils/types";
55

6-
export const CaretLeft: React.FC<IconProps> = ({ fill = "#52525B" }) => {
6+
export const CaretLeft: React.FC<IconProps> = ({ fill = "#525252" }) => {
77
return (
88
<Svg width="100%" height="100%" viewBox="0 0 12 12" fill="none">
99
<Path

src/icons/CaretRight.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import Svg, { Path } from "react-native-svg";
33

44
import { IconProps } from "../utils";
55

6-
export const CaretRight: React.FC<IconProps> = ({ fill = "#52525B" }) => {
6+
export const CaretRight: React.FC<IconProps> = ({ fill = "#525252" }) => {
77
return (
88
<Svg width="100%" height="100%" viewBox="0 0 12 12" fill="none">
99
<Path

src/icons/Check.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import Svg, { Path } from "react-native-svg";
33

44
import { IconProps } from "../utils";
55

6-
export const Check: React.FC<IconProps> = ({ fill = "#52525B" }) => {
6+
export const Check: React.FC<IconProps> = ({ fill = "#525252" }) => {
77
return (
88
<Svg width="100%" height="100%" viewBox="0 0 12 12" fill="none">
99
<Path

src/icons/Clock.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import Svg, { Path } from "react-native-svg";
33

44
import { IconProps } from "../utils";
55

6-
export const Clock: React.FC<IconProps> = ({ fill = "#52525B" }) => {
6+
export const Clock: React.FC<IconProps> = ({ fill = "#525252" }) => {
77
return (
88
<Svg width="100%" height="100%" viewBox="0 0 12 12" fill="none">
99
<Path

src/icons/Close.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import Svg, { Path } from "react-native-svg";
33

44
import { IconProps } from "../utils";
55

6-
export const Close: React.FC<IconProps> = ({ fill = "#52525B" }) => {
6+
export const Close: React.FC<IconProps> = ({ fill = "#525252" }) => {
77
return (
88
<Svg width="100%" height="100%" viewBox="0 0 12 12" fill="none">
99
<Path

src/icons/Dash.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import Svg, { Path } from "react-native-svg";
33

44
import { IconProps } from "../utils";
55

6-
export const Dash: React.FC<IconProps> = ({ fill = "#52525B" }) => {
6+
export const Dash: React.FC<IconProps> = ({ fill = "#525252" }) => {
77
return (
88
<Svg width="100%" height="100%" viewBox="0 0 12 12" fill="none">
99
<Path

src/icons/Search.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import Svg, { Path } from "react-native-svg";
33

44
import { IconProps } from "../utils";
55

6-
export const Search: React.FC<IconProps> = ({ fill = "#52525B" }) => {
6+
export const Search: React.FC<IconProps> = ({ fill = "#525252" }) => {
77
return (
88
<Svg width="100%" height="100%" viewBox="0 0 12 12" fill="none">
99
<Path

0 commit comments

Comments
 (0)