@wonderflow/react-components
Version:
UI components from Wonderflow's Wanda design system
16 lines • 663 B
TypeScript
import { PropsWithChildren } from 'react';
import { SymbolProps } from '../..';
import { ListProps } from './list';
export declare type ListItemProps = PropsWithChildren<PropsWithClass> & Pick<ListProps, 'dimension' | 'hideMarker'> & {
/**
* Set the marker style. You can use any icon from the symbols as marker
* by passing its name.
*/
marker?: SymbolProps['source'];
/**
* Set the color of the marker.
*/
markerColor?: string;
};
export declare const ListItem: import("react").ForwardRefExoticComponent<Pick<ListItemProps, string> & import("react").RefAttributes<HTMLLIElement>>;
//# sourceMappingURL=list-item.d.ts.map