EmptyState
We are currently considering the development of EmptyState
.
Theming
The EmptyState
is a multi part component.
If you want to change the style of the component, please check here.
export const EmptyState: ComponentMultiStyle<"EmptyState"> = {baseStyle: {container: {alignItems: "center",display: "flex",flexDirection: "column",justifyContent: "center",w: "full",},content: {alignItems: "center",display: "flex",flexDirection: "column",justifyContent: "center",},description: {color: "muted",fontSize: "sm",},indicator: {alignItems: "center",color: "muted",display: "flex",justifyContent: "center",},title: {fontWeight: "semibold",},},sizes: {sm: {container: {gap: "sm",py: "sm",},content: {gap: "xs",},indicator: {fontSize: "4xl",},title: {fontSize: "md",},},md: {container: {gap: "md",py: "md",},content: {gap: "sm",},indicator: {fontSize: "5xl",},title: {fontSize: "lg",},},lg: {container: {gap: "lg",py: "lg",},content: {gap: "md",},indicator: {fontSize: "6xl",},title: {fontSize: "xl",},},},defaultProps: {size: "md",},}
Edit this page on GitHub