({
theme,
customBackdropColor,
}: {
theme: InternalTheme;
customBackdropColor?: string;
})
| 334 | }; |
| 335 | |
| 336 | export const getFABGroupColors = ({ |
| 337 | theme, |
| 338 | customBackdropColor, |
| 339 | }: { |
| 340 | theme: InternalTheme; |
| 341 | customBackdropColor?: string; |
| 342 | }) => { |
| 343 | return { |
| 344 | labelColor: getLabelColor({ theme }), |
| 345 | backdropColor: getBackdropColor({ theme, customBackdropColor }), |
| 346 | stackedFABBackgroundColor: getStackedFABBackgroundColor({ theme }), |
| 347 | }; |
| 348 | }; |
| 349 | |
| 350 | const standardSize = { |
| 351 | height: 56, |
no test coverage detected
searching dependent graphs…