UNPKG

@adaptabletools/adaptable

Version:

Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

10 lines (9 loc) 352 B
import * as React from 'react'; import { AdaptableIcon, AdaptableStyle } from '../../../types'; export interface BadgeProps { adaptableStyle: AdaptableStyle; icon?: AdaptableIcon; iconPosition?: 'start' | 'end' | 'Start' | 'End'; gap?: number; } export declare const Badge: React.FunctionComponent<React.PropsWithChildren<BadgeProps>>;