Hiyve Components - v1.0.0
    Preparing search index...

    Interface ReactionPickerProps

    Props for the ReactionPicker component.

    interface ReactionPickerProps {
        colors?: Partial<ReactionPickerColors>;
        disabled?: boolean;
        effects: ReactionEffect[];
        labels?: Partial<ReactionPickerLabels>;
        onSelect: (effectId: string) => void;
        styles?: Partial<ReactionPickerStyles>;
        tooltip?: string;
        triggerIcon?: ReactNode;
    }
    Index

    Properties

    colors?: Partial<ReactionPickerColors>

    Custom colors

    disabled?: boolean

    Whether picking is disabled (e.g., during cooldown)

    effects: ReactionEffect[]

    Available effects to choose from

    labels?: Partial<ReactionPickerLabels>

    Custom labels

    onSelect: (effectId: string) => void

    Called when the user selects an effect

    styles?: Partial<ReactionPickerStyles>

    Custom styles

    tooltip?: string

    Tooltip text for the trigger button

    triggerIcon?: ReactNode

    Custom trigger icon