chromogen
Version:
simple, interaction-driven Jest test generator for Recoil and React Hooks apps
12 lines (11 loc) • 348 B
TypeScript
import React from 'react';
export declare const downloadArrow: React.CSSProperties;
declare type Icon = 'download' | 'expand' | 'retract' | 'copy' | 'arrow' | 'check';
interface Props {
icon: Icon;
handleClick?: any;
value?: string;
arrow?: boolean;
}
declare const SecondaryButton: React.FC<Props>;
export default SecondaryButton;