Skip to content

Commit

Permalink
fix: allow string arrays for themeoutline
Browse files Browse the repository at this point in the history
  • Loading branch information
sastan committed May 11, 2021
1 parent 99db216 commit 97fdccd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export type ThemeFontSize =
| [size: string, lineHeight: string]
| [size: string, options: { lineHeight?: string; letterSpacing?: string }]

export type ThemeOutline = [outline: string, offset: string]
export type ThemeOutline = [outline: string, offset: string] | string[]

export interface Theme {
colors: ThemeSection<ThemeColor>
Expand Down

0 comments on commit 97fdccd

Please sign in to comment.