@massds/mayflower-react
Version:
React versions of Mayflower design system UI components
28 lines (27 loc) • 563 B
TypeScript
export interface UnorderedListProps {
/** The text displayed. */
sublist?: {
text: string;
sublist?: {
text: string;
}[];
}[];
}
declare const UnorderedList: {
(props: UnorderedListProps): any;
defaultProps: {
sublist: ({
text: string;
sublist?: undefined;
} | {
text: string;
sublist: {
text: string;
}[];
})[];
};
};
export interface listItemProps {
text?: string;
}
export default UnorderedList;