Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
Collection50 committed Aug 29, 2024
1 parent 3c7a32b commit f8f9fe8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 48 deletions.
6 changes: 3 additions & 3 deletions src/system/components/Icon/Icon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import { Bell } from './SVG/Bell';
import { Check } from './SVG/Check';
import { CloverLogo } from '@/system/components/Icon/SVG/CloverLogo';
import { Google } from './SVG/Google';
import { CodingSignUp } from './SVG/CondingSignUp';
import { Clover } from './SVG/Clover';
import { Copy } from './SVG/Copy';
import { Delete } from './SVG/Delete';
Expand Down Expand Up @@ -43,7 +42,8 @@ import { ToLeft } from './SVG/ToLeft';
import { Up } from './SVG/Up';
import { X } from './SVG/X';
import { WorkFill } from './SVG/WorkFill';
import { DesignSignup } from './SVG/DesignSignUp';
import { DesignSignUp } from './SVG/DesignSignUp';
import { CodingSignUp } from './SVG/CodingSignUp';

const iconMap = {
bell: Bell,
Expand Down Expand Up @@ -81,7 +81,7 @@ const iconMap = {
google: Google,
cloverLogo: CloverLogo,
codingSignUp: CodingSignUp,
designSignUp: DesignSignup,
designSignUp: DesignSignUp,
fullScreenCorner: FullScreenCorner,
toLeft: ToLeft,
refresh: Refresh,
Expand Down
43 changes: 0 additions & 43 deletions src/system/components/Icon/SVG/CondingSignUp.tsx

This file was deleted.

2 changes: 1 addition & 1 deletion src/system/components/Icon/SVG/DesignSignUp.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { IconBaseType } from './type';

export function DesignSignup({ size }: IconBaseType) {
export function DesignSignUp({ size }: IconBaseType) {
return (
<svg width={size} height={size} viewBox={`0 0 ${size} ${size}`} fill="none" xmlns="http://www.w3.org/2000/svg">
<path
Expand Down
2 changes: 1 addition & 1 deletion src/system/components/Icon/SVG/DesignSignup.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { IconBaseType } from './type';

export function DesignSignup({ size }: IconBaseType) {
export function DesignSignUp({ size }: IconBaseType) {
return (
<svg width={size} height={size} viewBox={`0 0 ${size} ${size}`} fill="none" xmlns="http://www.w3.org/2000/svg">
<path
Expand Down

0 comments on commit f8f9fe8

Please sign in to comment.