Skip to content

Commit 3494841

Browse files
committed
fix: update yongpyong, muju, eden, o2 slopes
1 parent b5c1dc5 commit 3494841

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+254
-372
lines changed

src/entities/slope/model/image/eden/basic-slope-path.tsx renamed to src/entities/slope/model/image/eden/basic-path.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from 'react';
22
import { cn } from '@/shared/lib';
33

4-
const BasicSlopePath = ({ color }: { color?: string }) => {
4+
const BasicPath = ({ color }: { color?: string }) => {
55
return (
66
<svg
77
width="100%"
@@ -18,4 +18,4 @@ const BasicSlopePath = ({ color }: { color?: string }) => {
1818
);
1919
};
2020

21-
export default BasicSlopePath;
21+
export default BasicPath;

src/entities/slope/model/image/eden/jupiter-slope-path.tsx renamed to src/entities/slope/model/image/eden/jupiter-path.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from 'react';
22
import { cn } from '@/shared/lib';
33

4-
const JupiterSlopePath = ({ color }: { color?: string }) => {
4+
const JupiterPath = ({ color }: { color?: string }) => {
55
return (
66
<svg
77
width="100%"
@@ -18,4 +18,4 @@ const JupiterSlopePath = ({ color }: { color?: string }) => {
1818
);
1919
};
2020

21-
export default JupiterSlopePath;
21+
export default JupiterPath;

src/entities/slope/model/image/eden/main-slope-path.tsx renamed to src/entities/slope/model/image/eden/main-path.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from 'react';
22
import { cn } from '@/shared/lib';
33

4-
const MainSlopePath = ({ color }: { color?: string }) => {
4+
const MainPath = ({ color }: { color?: string }) => {
55
return (
66
<svg
77
width="100%"
@@ -18,4 +18,4 @@ const MainSlopePath = ({ color }: { color?: string }) => {
1818
);
1919
};
2020

21-
export default MainSlopePath;
21+
export default MainPath;

src/entities/slope/model/image/eden/mercury-slope-path.tsx renamed to src/entities/slope/model/image/eden/mercury-path.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from 'react';
22
import { cn } from '@/shared/lib';
33

4-
const MercurySlopePath = ({ color }: { color?: string }) => {
4+
const MercuryPath = ({ color }: { color?: string }) => {
55
return (
66
<svg
77
width="100%"
@@ -18,4 +18,4 @@ const MercurySlopePath = ({ color }: { color?: string }) => {
1818
);
1919
};
2020

21-
export default MercurySlopePath;
21+
export default MercuryPath;

src/entities/slope/model/image/eden/saturn-slope-path.tsx renamed to src/entities/slope/model/image/eden/saturn-path.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from 'react';
22
import { cn } from '@/shared/lib';
33

4-
const SaturnSlopePath = ({ color }: { color?: string }) => {
4+
const SaturnPath = ({ color }: { color?: string }) => {
55
return (
66
<svg
77
width="100%"
@@ -18,4 +18,4 @@ const SaturnSlopePath = ({ color }: { color?: string }) => {
1818
);
1919
};
2020

21-
export default SaturnSlopePath;
21+
export default SaturnPath;

src/entities/slope/model/image/eden/uranus-slope-path.tsx renamed to src/entities/slope/model/image/eden/uranus-path.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from 'react';
22
import { cn } from '@/shared/lib';
33

4-
const UranusSlopePath = ({ color }: { color?: string }) => {
4+
const UranusPath = ({ color }: { color?: string }) => {
55
return (
66
<svg
77
width="100%"
@@ -18,4 +18,4 @@ const UranusSlopePath = ({ color }: { color?: string }) => {
1818
);
1919
};
2020

21-
export default UranusSlopePath;
21+
export default UranusPath;

src/entities/slope/model/image/eden/venus-slope-path.tsx renamed to src/entities/slope/model/image/eden/venus-path.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from 'react';
22
import { cn } from '@/shared/lib';
33

4-
const VenusSlopePath = ({ color }: { color?: string }) => {
4+
const VenusPath = ({ color }: { color?: string }) => {
55
return (
66
<svg
77
width="100%"
@@ -18,4 +18,4 @@ const VenusSlopePath = ({ color }: { color?: string }) => {
1818
);
1919
};
2020

21-
export default VenusSlopePath;
21+
export default VenusPath;

src/entities/slope/model/image/muju/cadenza-slope-path.tsx renamed to src/entities/slope/model/image/muju/cadenza-path.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from 'react';
22
import { cn } from '@/shared/lib';
33

4-
const CadenzaSlopePath = ({ color }: { color?: string }) => {
4+
const CadenzaPath = ({ color }: { color?: string }) => {
55
const defaultStrokeColor = 'text-[#171D23]';
66
const strokeColorClass = color ? color.replace('fill-', 'text-') : defaultStrokeColor;
77
return (
@@ -23,4 +23,4 @@ const CadenzaSlopePath = ({ color }: { color?: string }) => {
2323
);
2424
};
2525

26-
export default CadenzaSlopePath;
26+
export default CadenzaPath;

src/entities/slope/model/image/muju/connection-slope-path.tsx renamed to src/entities/slope/model/image/muju/connection-path.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from 'react';
22
import { cn } from '@/shared/lib';
33

4-
const ConnectionSlopePath = ({ color }: { color?: string }) => {
4+
const ConnectionPath = ({ color }: { color?: string }) => {
55
return (
66
<svg
77
width="100%"
@@ -18,4 +18,4 @@ const ConnectionSlopePath = ({ color }: { color?: string }) => {
1818
);
1919
};
2020

21-
export default ConnectionSlopePath;
21+
export default ConnectionPath;

src/entities/slope/model/image/muju/eastern-slope-path.tsx renamed to src/entities/slope/model/image/muju/eastern-path.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from 'react';
22
import { cn } from '@/shared/lib';
33

4-
const EasternSlopePath = ({ color }: { color?: string }) => {
4+
const EasternPath = ({ color }: { color?: string }) => {
55
return (
66
<svg
77
width="100%"
@@ -18,4 +18,4 @@ const EasternSlopePath = ({ color }: { color?: string }) => {
1818
);
1919
};
2020

21-
export default EasternSlopePath;
21+
export default EasternPath;

0 commit comments

Comments
 (0)