interface SizeProp {
xs?: TwStyle
sm?: TwStyle
md?: TwStyle
lg?: TwStyle
xl?: TwStyle
}
const sizeStyles: SizeProp = {
xs: tw`h-4 text-xs`,
sm: tw`h-6 text-sm`,
md: tw`h-8 text-base`,
lg: tw`h-10 text-lg`,
xl: tw`h-12 text-xl`,
}
interface SizeProp {
xs?: TwStyle
sm?: TwStyle
md?: TwStyle
lg?: TwStyle
xl?: TwStyle
}
const sizeStyles: SizeProp = {
xs: tw`h-4 text-xs`,
sm: tw`h-6 text-sm`,
md: tw`h-8 text-base`,
lg: tw`h-10 text-lg`,
xl: tw`h-12 text-xl`,
}