nes-ui-react
Version:
A design system that paints the web in 8 bits.
10 lines (9 loc) • 439 B
TypeScript
/// <reference types="react" />
import { IdProps } from "./interface/IdProps";
import { Size } from "./interface/Size";
import { StyleProps } from "./interface/StyleProps";
export interface ListProps extends StyleProps, React.PropsWithChildren<any>, IdProps {
styleType?: 'disc' | 'circle';
size?: Size;
}
export declare const List: ({ id, style, children, styleType, size }: ListProps) => import("react/jsx-runtime").JSX.Element;