Skip to content

Commit

Permalink
fix: typescript fix
Browse files Browse the repository at this point in the history
  • Loading branch information
keellyp committed Jul 29, 2024
1 parent 3a29183 commit edf367f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/utils/responsiveProps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { css } from 'styled-components'

import { theme } from '~/styles'

type Breakpoint = 'xs' | 'sm' | 'md' | 'lg' | 'xl'
type Breakpoint = keyof typeof theme.breakpoints.values
type BreakpointWithDefault = Breakpoint | 'default'

export type ResponsiveStyleValue<T extends string | number> =
Expand Down

0 comments on commit edf367f

Please sign in to comment.