UNPKG

@100mslive/roomkit-react

Version:

![Banner](https://github.com/100mslive/web-sdks/blob/06c65259912db6ccd8617f2ecb6fef51429251ec/prebuilt-banner.png)

13 lines (12 loc) 484 B
import React from 'react'; import { CSS } from '../../Theme'; declare const Chip: ({ icon, content, backgroundColor, textColor, hideIfNoContent, onClick, css, }: { icon?: React.JSX.Element | undefined; content: string; backgroundColor?: string | undefined; textColor?: string | undefined; hideIfNoContent?: boolean | undefined; onClick?: (() => void | Promise<void>) | undefined; css?: CSS | undefined; }) => React.JSX.Element | null; export default Chip;