@yamada-ui/react
Version:
React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion
52 lines (51 loc) • 948 B
TypeScript
import { ComponentStyle } from "../../core/system/index.types.js";
import "../../index.js";
//#region src/components/badge/badge.style.d.ts
declare const badgeStyle: ComponentStyle<{
/**
* If `true`, the button is full rounded. Else, it'll be slightly round.
*
* @default false
*/
fullRounded: {
true: {
rounded: "full";
};
};
}, {
sm: {
fontSize: "xs";
lineHeight: "{sizes.5}";
minH: "5";
px: "1.5";
};
md: {
fontSize: "sm";
lineHeight: "{sizes.6}";
minH: "6";
px: "2";
};
lg: {
fontSize: "md";
lineHeight: "{sizes.7}";
minH: "7";
px: "2.5";
};
}, {
outline: {
layerStyle: "outline";
};
solid: {
layerStyle: "solid";
};
subtle: {
layerStyle: "subtle";
};
surface: {
layerStyle: "surface";
};
}>;
type BadgeStyle = typeof badgeStyle;
//#endregion
export { BadgeStyle, badgeStyle };
//# sourceMappingURL=badge.style.d.ts.map