36 lines
841 B
TypeScript
36 lines
841 B
TypeScript
import * as _chakra_ui_styled_system from '@chakra-ui/styled-system';
|
|
|
|
declare const spinnerTheme: {
|
|
baseStyle?: {
|
|
width: string[];
|
|
height: string[];
|
|
} | undefined;
|
|
sizes?: {
|
|
xs: {
|
|
[x: string]: string;
|
|
};
|
|
sm: {
|
|
[x: string]: string;
|
|
};
|
|
md: {
|
|
[x: string]: string;
|
|
};
|
|
lg: {
|
|
[x: string]: string;
|
|
};
|
|
xl: {
|
|
[x: string]: string;
|
|
};
|
|
} | undefined;
|
|
variants?: {
|
|
[key: string]: _chakra_ui_styled_system.SystemStyleInterpolation;
|
|
} | undefined;
|
|
defaultProps?: {
|
|
size?: "md" | "xs" | "sm" | "lg" | "xl" | undefined;
|
|
variant?: string | number | undefined;
|
|
colorScheme?: string | undefined;
|
|
} | undefined;
|
|
};
|
|
|
|
export { spinnerTheme };
|