@makeen.io/material-ui-kit
Version:
Makeen UI components kit. Based on material-ui.
11 lines (10 loc) • 468 B
TypeScript
import { TextProps } from "../index";
export declare type StatusLabelProps = {
color: "basic" | "primary" | "success" | "info" | "warning" | "danger";
italic?: boolean;
label: string;
textVariant?: TextProps["variant"];
upperCase?: boolean;
};
declare const _default: import("styled-components").StyledComponent<({ color, label, italic, textVariant, upperCase, ...rest }: StatusLabelProps) => JSX.Element, any, {}, never>;
export default _default;