Skip to content

Commit a8bd9c1

Browse files
committed
refactor: remove unused imports from Card, Surface, and Typography components
1 parent b158af7 commit a8bd9c1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/design-system/Card.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from 'react';
2-
import { colors, fontSizes, radii, spacing, shadows } from '../design-system/tokens';
2+
import { colors, radii, spacing, shadows } from '../design-system/tokens';
33

44
interface CardProps {
55
children: React.ReactNode;

src/design-system/Surface.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from 'react';
2-
import { colors, spacing, radii, fontSizes } from '../design-system/tokens';
2+
import { colors, spacing, radii } from '../design-system/tokens';
33

44
interface SurfaceProps {
55
children: React.ReactNode;

src/design-system/Typography.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from 'react';
2-
import { colors, fontSizes, radii, spacing } from '../design-system/tokens';
2+
import { colors, fontSizes } from '../design-system/tokens';
33

44
interface TypographyProps {
55
variant?: 'h1' | 'h2' | 'h3' | 'body' | 'caption';

0 commit comments

Comments
 (0)