Skip to content

Commit

Permalink
fix: update yongpyong, muju, eden, o2 slopes
Browse files Browse the repository at this point in the history
  • Loading branch information
Najeong-Kim committed Dec 1, 2024
1 parent b5c1dc5 commit 3494841
Show file tree
Hide file tree
Showing 50 changed files with 254 additions and 372 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import { cn } from '@/shared/lib';

const BasicSlopePath = ({ color }: { color?: string }) => {
const BasicPath = ({ color }: { color?: string }) => {
return (
<svg
width="100%"
Expand All @@ -18,4 +18,4 @@ const BasicSlopePath = ({ color }: { color?: string }) => {
);
};

export default BasicSlopePath;
export default BasicPath;
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import { cn } from '@/shared/lib';

const JupiterSlopePath = ({ color }: { color?: string }) => {
const JupiterPath = ({ color }: { color?: string }) => {
return (
<svg
width="100%"
Expand All @@ -18,4 +18,4 @@ const JupiterSlopePath = ({ color }: { color?: string }) => {
);
};

export default JupiterSlopePath;
export default JupiterPath;
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import { cn } from '@/shared/lib';

const MainSlopePath = ({ color }: { color?: string }) => {
const MainPath = ({ color }: { color?: string }) => {
return (
<svg
width="100%"
Expand All @@ -18,4 +18,4 @@ const MainSlopePath = ({ color }: { color?: string }) => {
);
};

export default MainSlopePath;
export default MainPath;
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import { cn } from '@/shared/lib';

const MercurySlopePath = ({ color }: { color?: string }) => {
const MercuryPath = ({ color }: { color?: string }) => {
return (
<svg
width="100%"
Expand All @@ -18,4 +18,4 @@ const MercurySlopePath = ({ color }: { color?: string }) => {
);
};

export default MercurySlopePath;
export default MercuryPath;
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import { cn } from '@/shared/lib';

const SaturnSlopePath = ({ color }: { color?: string }) => {
const SaturnPath = ({ color }: { color?: string }) => {
return (
<svg
width="100%"
Expand All @@ -18,4 +18,4 @@ const SaturnSlopePath = ({ color }: { color?: string }) => {
);
};

export default SaturnSlopePath;
export default SaturnPath;
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import { cn } from '@/shared/lib';

const UranusSlopePath = ({ color }: { color?: string }) => {
const UranusPath = ({ color }: { color?: string }) => {
return (
<svg
width="100%"
Expand All @@ -18,4 +18,4 @@ const UranusSlopePath = ({ color }: { color?: string }) => {
);
};

export default UranusSlopePath;
export default UranusPath;
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import { cn } from '@/shared/lib';

const VenusSlopePath = ({ color }: { color?: string }) => {
const VenusPath = ({ color }: { color?: string }) => {
return (
<svg
width="100%"
Expand All @@ -18,4 +18,4 @@ const VenusSlopePath = ({ color }: { color?: string }) => {
);
};

export default VenusSlopePath;
export default VenusPath;
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import { cn } from '@/shared/lib';

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

export default CadenzaSlopePath;
export default CadenzaPath;
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import { cn } from '@/shared/lib';

const ConnectionSlopePath = ({ color }: { color?: string }) => {
const ConnectionPath = ({ color }: { color?: string }) => {
return (
<svg
width="100%"
Expand All @@ -18,4 +18,4 @@ const ConnectionSlopePath = ({ color }: { color?: string }) => {
);
};

export default ConnectionSlopePath;
export default ConnectionPath;
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import { cn } from '@/shared/lib';

const EasternSlopePath = ({ color }: { color?: string }) => {
const EasternPath = ({ color }: { color?: string }) => {
return (
<svg
width="100%"
Expand All @@ -18,4 +18,4 @@ const EasternSlopePath = ({ color }: { color?: string }) => {
);
};

export default EasternSlopePath;
export default EasternPath;
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import { cn } from '@/shared/lib';

const PolkaSlopePath = ({ color }: { color?: string }) => {
const PolkaPath = ({ color }: { color?: string }) => {
const defaultStrokeColor = 'text-[#171D23]';
const strokeColorClass = color ? color.replace('fill-', 'text-') : defaultStrokeColor;
return (
Expand All @@ -23,4 +23,4 @@ const PolkaSlopePath = ({ color }: { color?: string }) => {
);
};

export default PolkaSlopePath;
export default PolkaPath;
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import { cn } from '@/shared/lib';

const RGardnerSlopePath = ({ color }: { color?: string }) => {
const RGardnerPath = ({ color }: { color?: string }) => {
const defaultStrokeColor = 'text-[#171D23]';
const strokeColorClass = color ? color.replace('fill-', 'text-') : defaultStrokeColor;
return (
Expand All @@ -23,4 +23,4 @@ const RGardnerSlopePath = ({ color }: { color?: string }) => {
);
};

export default RGardnerSlopePath;
export default RGardnerPath;
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import { cn } from '@/shared/lib';

const RookiehillSlopePath = ({ color }: { color?: string }) => {
const RookiehillPath = ({ color }: { color?: string }) => {
const defaultStrokeColor = 'text-[#447EFF]';
const strokeColorClass = color ? color.replace('fill-', 'text-') : defaultStrokeColor;
return (
Expand All @@ -22,4 +22,4 @@ const RookiehillSlopePath = ({ color }: { color?: string }) => {
);
};

export default RookiehillSlopePath;
export default RookiehillPath;
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import { cn } from '@/shared/lib';

const RusutsuSlopePath = ({ color }: { color?: string }) => {
const RusutsuPath = ({ color }: { color?: string }) => {
const defaultStrokeColor = 'text-[#171D23]';
const strokeColorClass = color ? color.replace('fill-', 'text-') : defaultStrokeColor;
return (
Expand All @@ -24,4 +24,4 @@ const RusutsuSlopePath = ({ color }: { color?: string }) => {
);
};

export default RusutsuSlopePath;
export default RusutsuPath;
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import { cn } from '@/shared/lib';

const ShortcutSlopePath = ({ color }: { color?: string }) => {
const ShortcutPath = ({ color }: { color?: string }) => {
const defaultStrokeColor = 'text-[#171D23]';
const strokeColorClass = color ? color.replace('fill-', 'text-') : defaultStrokeColor;
return (
Expand All @@ -24,4 +24,4 @@ const ShortcutSlopePath = ({ color }: { color?: string }) => {
);
};

export default ShortcutSlopePath;
export default ShortcutPath;
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import { cn } from '@/shared/lib';

const SpitchSlopePath = ({ color }: { color?: string }) => {
const SpitchPath = ({ color }: { color?: string }) => {
const defaultStrokeColor = 'text-[#171D23]';
const strokeColorClass = color ? color.replace('fill-', 'text-') : defaultStrokeColor;
return (
Expand All @@ -24,4 +24,4 @@ const SpitchSlopePath = ({ color }: { color?: string }) => {
);
};

export default SpitchSlopePath;
export default SpitchPath;
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import { cn } from '@/shared/lib';

const SundownSlopePath = ({ color }: { color?: string }) => {
const SundownPath = ({ color }: { color?: string }) => {
return (
<svg
width="100%"
Expand All @@ -18,4 +18,4 @@ const SundownSlopePath = ({ color }: { color?: string }) => {
);
};

export default SundownSlopePath;
export default SundownPath;
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import { cn } from '@/shared/lib';

const TurboSlopePath = ({ color }: { color?: string }) => {
const TurboPath = ({ color }: { color?: string }) => {
return (
<svg
width="100%"
Expand All @@ -18,4 +18,4 @@ const TurboSlopePath = ({ color }: { color?: string }) => {
);
};

export default TurboSlopePath;
export default TurboPath;
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import { cn } from '@/shared/lib';

const WaltzSlopePath = ({ color }: { color?: string }) => {
const WaltzPath = ({ color }: { color?: string }) => {
return (
<svg
width="100%"
Expand All @@ -18,4 +18,4 @@ const WaltzSlopePath = ({ color }: { color?: string }) => {
);
};

export default WaltzSlopePath;
export default WaltzPath;
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import { cn } from '@/shared/lib';

const WesternSlopePath = ({ color }: { color?: string }) => {
const WesternPath = ({ color }: { color?: string }) => {
const defaultStrokeColor = 'text-[#447EFF]';
const strokeColorClass = color ? color.replace('fill-', 'text-') : defaultStrokeColor;
return (
Expand All @@ -22,4 +22,4 @@ const WesternSlopePath = ({ color }: { color?: string }) => {
);
};

export default WesternSlopePath;
export default WesternPath;
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import { cn } from '@/shared/lib';

const YamagaSlopePath = ({ color }: { color?: string }) => {
const YamagaPath = ({ color }: { color?: string }) => {
return (
<svg
width="100%"
Expand All @@ -18,4 +18,4 @@ const YamagaSlopePath = ({ color }: { color?: string }) => {
);
};

export default YamagaSlopePath;
export default YamagaPath;
34 changes: 0 additions & 34 deletions src/entities/slope/model/image/o2/challenge-slope2-path.tsx

This file was deleted.

Loading

0 comments on commit 3494841

Please sign in to comment.