Guaxu Docs
    Preparing search index...

    Interface ChipProps

    interface ChipProps {
        children: (item: ChipItemProps) => ReactNode;
        items: ChipItemProps[];
        label: string;
        onSelectionChange: (_: Key | null) => void;
        selected: Key | null;
    }
    Index

    Properties

    children: (item: ChipItemProps) => ReactNode
    items: ChipItemProps[]
    label: string
    onSelectionChange: (_: Key | null) => void
    selected: Key | null