smart-react-components
Version:
React UI library, wide variety of editable ready to use Styled and React components.
13 lines (12 loc) • 383 B
TypeScript
import React from "react";
import { SizeProps } from "../props/size-props";
import { JSXElementProps, JSXChild } from "../props";
export interface Props extends SizeProps {
elementProps?: JSXElementProps;
children: JSXChild;
box?: boolean;
type?: string;
fill?: boolean;
}
declare const OptionCategory: React.FC<Props>;
export default OptionCategory;