@makeen.io/material-ui-kit
Version:
Makeen UI components kit. Based on material-ui.
14 lines (13 loc) • 410 B
TypeScript
import { HTMLAttributes } from "react";
declare type ExplorerTagWrapperProps = HTMLAttributes<HTMLSpanElement> & {
isFilled?: boolean;
palette: string;
size: "small" | "medium";
tagStyle?: Function;
withCloseBtn?: boolean;
};
export declare type TagProps = ExplorerTagWrapperProps & {
label: string;
};
declare const _default: (props: TagProps) => JSX.Element;
export default _default;