@navinc/base-react-components
Version:
Nav's Pattern Library
12 lines (11 loc) • 497 B
TypeScript
/// <reference types="react" />
import { SizeKey } from './copy.js';
declare type ListItemProps = {
light?: boolean;
bold?: boolean;
size?: SizeKey;
};
export declare const ListItem: import("styled-components").StyledComponent<"li", import("styled-components").DefaultTheme, ListItemProps, never>;
export declare const UnorderedList: (props: JSX.IntrinsicElements['ul']) => JSX.Element;
export declare const OrderedList: (props: JSX.IntrinsicElements['ol']) => JSX.Element;
export {};