Sha256: 9ba73f2b5d3c92ca0d4646c27ad10c3f1a55df444359032e656774b4aaef521d
Contents?: true
Size: 591 Bytes
Versions: 2
Compression:
Stored size: 591 Bytes
Contents
import React from 'react'; declare type CircleIconButtonProps = { aria?: { [key: string]: string; }; className?: string; dark?: boolean; data?: { [key: string]: string; }; disabled?: boolean; icon: string; id?: string; link?: string; onClick?: React.MouseEventHandler<HTMLElement>; newWindow?: boolean; type?: 'button' | 'submit' | 'reset' | undefined; variant?: 'primary' | 'secondary' | 'link'; }; declare const CircleIconButton: (props: CircleIconButtonProps) => React.ReactElement; export default CircleIconButton;
Version data entries
2 entries across 2 versions & 1 rubygems