@plurid/plurid-ui-components-react
Version:
Plurid User Interface Components for React
12 lines (11 loc) • 322 B
TypeScript
import React from 'react';
import { Theme } from '@plurid/plurid-themes';
export interface EntityPillProperties {
id: string;
remove: (id: string) => void;
text?: string;
theme?: Theme;
style?: React.CSSProperties;
}
declare const EntityPill: React.FC<EntityPillProperties>;
export default EntityPill;