| 298 | } |
| 299 | |
| 300 | export interface BackgroundColorProps<Theme extends BaseTheme> { |
| 301 | backgroundColor?: ResponsiveValue< |
| 302 | keyof Theme['colors'], |
| 303 | Theme['breakpoints'] |
| 304 | >; |
| 305 | } |
| 306 | |
| 307 | export interface BackgroundColorShorthandProps<Theme extends BaseTheme> { |
| 308 | bg?: ResponsiveValue<keyof Theme['colors'], Theme['breakpoints']>; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…