55 lines
1.5 KiB
TypeScript
55 lines
1.5 KiB
TypeScript
import * as _chakra_ui_styled_system from '@chakra-ui/styled-system';
|
|
|
|
declare const vars: Record<"color" | "shadow" | "bg", {
|
|
variable: string;
|
|
reference: string;
|
|
}>;
|
|
declare const badgeTheme: {
|
|
baseStyle?: {
|
|
px: number;
|
|
textTransform: string;
|
|
fontSize: string;
|
|
borderRadius: string;
|
|
fontWeight: string;
|
|
bg: string;
|
|
color: string;
|
|
boxShadow: string;
|
|
} | undefined;
|
|
sizes?: {
|
|
[key: string]: _chakra_ui_styled_system.SystemStyleInterpolation;
|
|
} | undefined;
|
|
variants?: {
|
|
solid: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
|
|
[x: string]: string | {
|
|
[x: string]: string;
|
|
};
|
|
_dark: {
|
|
[x: string]: string;
|
|
};
|
|
};
|
|
subtle: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
|
|
[x: string]: string | {
|
|
[x: string]: string;
|
|
};
|
|
_dark: {
|
|
[x: string]: string;
|
|
};
|
|
};
|
|
outline: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
|
|
[x: string]: string | {
|
|
[x: string]: string;
|
|
};
|
|
_dark: {
|
|
[x: string]: string;
|
|
};
|
|
};
|
|
} | undefined;
|
|
defaultProps?: {
|
|
size?: string | number | undefined;
|
|
variant?: "outline" | "solid" | "subtle" | undefined;
|
|
colorScheme?: string | undefined;
|
|
} | undefined;
|
|
};
|
|
|
|
export { badgeTheme, vars as badgeVars };
|