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