@clubmed/trident-ui
Version:
Shared ClubMed React UI components
8 lines (7 loc) • 312 B
TypeScript
import { ComponentProps, FunctionComponent } from 'react';
import { Button } from './Button';
interface Props extends ComponentProps<typeof Button> {
icon: 'ArrowDefaultLeft' | 'ArrowDefaultRight' | 'ArrowTailLeft' | 'ArrowTailRight';
}
export declare const ArrowButton: FunctionComponent<Props>;
export {};