gov-gui
Version:
Gov UI Component Library Typscript Build
24 lines (23 loc) • 782 B
TypeScript
import { GlobalProps } from '../../global/global-styles-helper';
import { AnimationProps } from '../../global/animation-helpers';
export declare class GovChip implements GlobalProps, AnimationProps {
label: string;
selected: boolean;
disabled: boolean;
size: 'sm' | 'md' | 'lg';
variant: 'primary' | 'secondary' | 'tertiary';
hover: boolean;
animation?: string;
animationDelay?: '2s' | '3s' | '4s' | '5s';
animationSpeed?: 'slow' | 'slower' | 'fast' | 'faster';
private allClasses;
private handleClick;
private handleMouseEnter;
private handleMouseLeave;
watchAnimations(): void;
watchAnimationsDelay(): void;
watchAnimationsSpeed(): void;
componentWillLoad(): void;
provideClass(): void;
render(): any;
}