UNPKG

smart-react-components

Version:

React UI library, wide variety of editable ready to use Styled and React components.

12 lines (11 loc) 344 B
import React from "react"; import { SizeProps } from "../props/size-props"; import { JSXElementProps, JSXChild } from "../props"; interface Props extends SizeProps { elementProps?: JSXElementProps; children: JSXChild; type?: string; shape?: string; } declare const Category: React.FC<Props>; export default Category;