smart-react-components
Version:
React UI library, wide variety of editable ready to use Styled and React components.
17 lines (16 loc) • 501 B
TypeScript
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;
hover?: boolean;
waveEffect?: string;
setStatus?: React.Dispatch<React.SetStateAction<boolean>>;
callback?: () => void;
disabled?: boolean;
}
declare const Item: React.FC<Props>;
export default Item;