export type ResponsiveProperty = T | { xs: T; sm?: T; md?: T; lg?: T; xl?: T; }; export type OptionalResponsiveProperty = T | { xs?: T; sm?: T; md?: T; lg?: T; xl?: T; };