({
customSize,
theme,
}: {
customSize?: number;
theme: InternalTheme;
})
| 423 | }); |
| 424 | |
| 425 | export const getExtendedFabStyle = ({ |
| 426 | customSize, |
| 427 | theme, |
| 428 | }: { |
| 429 | customSize?: number; |
| 430 | theme: InternalTheme; |
| 431 | }) => { |
| 432 | if (customSize) return getExtendedFabDimensions(customSize); |
| 433 | |
| 434 | const { isV3 } = theme; |
| 435 | |
| 436 | return isV3 ? v3Extended : extended; |
| 437 | }; |
| 438 | |
| 439 | let cachedContext: CanvasRenderingContext2D | null = null; |
| 440 |
no test coverage detected
searching dependent graphs…