CloseButton
CloseButton
は、基本的にコンポーネントの閉じる機能をトリガーするために使用するコンポーネントです。
テーマ
CloseButton
は、単一パーツのコンポーネントです。
CloseButton
は、Buttonのスタイルを継承しています。
コンポーネントのスタイルを変更したい場合は、こちらをご覧ください。
export const CloseButton: ComponentStyle<"CloseButton"> = mergeStyle(Button, {baseStyle: {rounded: "md",_active: {bg: ["blackAlpha.200", "whiteAlpha.200"],},_focusVisible: {boxShadow: "outline",},_hover: {bg: ["blackAlpha.100", "whiteAlpha.100"],},},sizes: {sm: {boxSize: 6,fontSize: "2xs",},md: {boxSize: 8,fontSize: "xs",},lg: {boxSize: 10,fontSize: "md",},},defaultProps: {size: "md",},})({ omit: ["variants", "sizes", "defaultProps"] })
GitHubでこのページを編集する