UNPKG

@conduction/components

Version:

React (Gatsby) components used within the Conduction Skeleton Application (and its implementations)

11 lines (10 loc) 292 B
/// <reference types="react" /> interface TagProps { label: string; icon?: JSX.Element; onClick?: () => any; remove?: () => any; layoutClassName?: string; } export declare const Tag: ({ label, icon, onClick, remove, layoutClassName }: TagProps) => JSX.Element; export {};