Skip to content

Commit

Permalink
feat: DividerProps 타입 생성성
Browse files Browse the repository at this point in the history
  • Loading branch information
nijuy committed Oct 28, 2024
1 parent 00b9117 commit 4d668ef
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/components/Divider/Divider.type.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export type DividerThickness = 1 | 2 | 4 | 8;
export interface DividerProps {
thickness: DividerThickness;
width?: number;
}

0 comments on commit 4d668ef

Please sign in to comment.