Props for BoolInline component.

interface Props {
    value?: null | boolean;
    checkIcon?: string;
    unCheckIcon?: string;
    undefinedIcon?: string;
    size?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl";
    cx?: ArgumentArray;
    icon?: string;
}

Hierarchy (view full)

Properties

value?: null | boolean

Input boolean value.

checkIcon?: string

Icon to display when value is true.

unCheckIcon?: string

Icon to display when value is false.

undefinedIcon?: string

Icon to display when value is undefined.

size?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl"

Size of the icon.

cx?: ArgumentArray

If you need to customize style of a component, pass a class names here.

icon?: string

Iconify icon name.