Rating
Rating
は、ユーザーが評価を行うために使用させるコンポーネントです。
テーマ
Rating
は、複数パーツのコンポーネントです。
コンポーネントのスタイルを変更したい場合は、こちらをご覧ください。
export const Rating: ComponentMultiStyle<"Rating"> = {baseStyle: ({ colorScheme: c = "yellow" }) => ({container: {w: "max-content",},group: {position: "relative",},icon: {fill: "currentColor",},item: {color: ["blackAlpha.300", "whiteAlpha.300"],cursor: "pointer",outline: "none",rounded: "sm",_disabled: {cursor: "not-allowed",opacity: 0.4,},_filled: {color: [`${c}.500`, `${c}.600`],},_focusVisible: {boxShadow: "outline",},_notLast: {left: 0,position: "absolute",top: 0,},_readOnly: {cursor: "default",},},}),sizes: {xs: {icon: {fontSize: "md",},},sm: {icon: {fontSize: "lg",},},md: {icon: {fontSize: "xl",},},lg: {icon: {fontSize: "2xl",},},xl: {icon: {fontSize: "3xl",},},},defaultProps: {colorScheme: "yellow",size: "md",},}
GitHubでこのページを編集する