File size: 1,621 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
"use client"
import { forwardRef } from "react"
import {
EMPTY_STYLES,
type HTMLChakraProps,
type RecipeProps,
type UnstyledProp,
chakra,
useRecipe,
} from "../../styled-system"
import { dataAttr } from "../../utils"
export interface CheckmarkProps
extends HTMLChakraProps<"svg", RecipeProps<"checkmark">>,
UnstyledProp {
/**
* Whether the checkmark is checked
*/
checked?: boolean | undefined
/**
* Whether the checkmark is indeterminate
*/
indeterminate?: boolean | undefined
/**
* Whether the checkmark is disabled
*/
disabled?: boolean | undefined
}
export const Checkmark = forwardRef<SVGSVGElement, CheckmarkProps>(
function Checkmark(props, ref) {
const recipe = useRecipe({ key: "checkmark", recipe: props.recipe })
const [variantProps, restProps] = recipe.splitVariantProps(props)
const { checked, indeterminate, disabled, unstyled, children, ...rest } =
restProps
const styles = unstyled ? EMPTY_STYLES : recipe(variantProps)
return (
<chakra.svg
ref={ref}
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth="3px"
strokeLinecap="round"
strokeLinejoin="round"
data-state={
indeterminate ? "indeterminate" : checked ? "checked" : "unchecked"
}
data-disabled={dataAttr(disabled)}
css={[styles, props.css]}
{...rest}
>
{indeterminate ? (
<path d="M5 12h14" />
) : checked ? (
<polyline points="20 6 9 17 4 12" />
) : null}
</chakra.svg>
)
},
)
|