Lists
Lists are a way to organize and explain related information.
One
one
Two
two
Three
three
Properties
export interface List extends Panel {
color?: CSSProperties["color"];
icon?: ListIcon;
}
export type Panel = {
border?: CSSProperties["border"];
background?: CSSProperties["background"];
boxShadow?: CSSProperties["boxShadow"];
borderRadius?: CSSProperties["borderRadius"];
padding?: CSSProperties["padding"];
};
export type ListIcon = {
color?: CSSProperties["color"];
background?: CSSProperties["background"];
border?: CSSProperties["border"];
};