Library
Library represents the various elements that go up to make the modal that is used to serve templates to the end users.
Search
Properties
export interface Search extends InputStyle {
border?: CSSProperties["border"];
background?: CSSProperties["background"];
color?: CSSProperties["color"];
height?: CSSProperties["height"];
"&:hover"?: {
background?: CSSProperties["background"];
boxShadow?: CSSProperties["boxShadow"];
};
"&:focus"?: {
boxShadow?: CSSProperties["boxShadow"];
};
icons?: {
color?: CSSProperties["color"];
};
}
Additional Settings
The background color of the View container can be customized, and the color of the verified icon can also be adjusted.
Properties
export type Library = {
background?: CSSProperties["background"];
verified?: {
color?: CSSProperties["color"];
};
};