UNPKG

@masaischool/lotus

Version:

Masai UI component library designed to work seamlessly with Chakra UI

10 lines (9 loc) 317 B
import React from 'react'; export interface Props { leftIcon?: React.ReactElement; rightIcon?: React.ReactElement; label?: string; disabled?: boolean; iconColor?: string; } export declare const Chips: ({ leftIcon, rightIcon, label, disabled, iconColor, ...props }: Props) => JSX.Element;