pouncejs
Version:
A collection of UI components from Panther labs
13 lines (12 loc) • 398 B
TypeScript
import React from 'react';
import { FlexProps } from '../Flex';
export interface TagProps extends FlexProps {
/**
* What happens when the "X" button is pressed. No "X" button is rendered, if this prop is not
* specified
* */
onRemove?: () => void;
}
/** A chip is an entry in a combobox, but can be used anywhere */
declare const Tag: React.FC<TagProps>;
export default Tag;