Status
Status
は、プロセスまたは状態のステータスを示すコンポーネントです。
テーマ
Status
は、複数パーツのコンポーネントです。
コンポーネントのスタイルを変更したい場合は、こちらをご覧ください。
export const Status: ComponentMultiStyle<"Status"> = {baseStyle: ({ colorScheme: bg = "info" }) => ({container: {alignItems: "center",display: "flex",gap: "sm",},indicator: {bg,flexShrink: 0,forcedColorAdjust: "none",rounded: "full",},}),sizes: {sm: {indicator: { boxSize: "2" },label: { fontSize: "sm" },},md: {indicator: { boxSize: "2.5" },label: { fontSize: "md" },},lg: {indicator: { boxSize: "3" },label: { fontSize: "lg" },},},defaultProps: {colorScheme: "info",size: "md",},}
GitHubでこのページを編集する