smart-react-components
Version:
React UI library, wide variety of editable ready to use Styled and React components.
15 lines (14 loc) • 443 B
TypeScript
import React from "react";
import { SizeProps } from "../props/size-props";
import { JSXElementProps } from "../props";
interface Props extends SizeProps {
elementProps?: JSXElementProps;
children: JSX.Element[];
type?: string;
shape?: string;
hover?: boolean;
waveEffect?: string;
setStatus?: React.Dispatch<React.SetStateAction<boolean>>;
}
declare const List: React.FC<Props>;
export default List;