eslint: use semicolon TypeScript delimeter

This commit is contained in:
Alex Gleason
2023-10-02 13:54:02 -05:00
parent 702124fb79
commit 645ce60a5f
479 changed files with 1928 additions and 1938 deletions

View File

@ -6,15 +6,15 @@ import Text from '../text/text';
interface IIconButton extends React.ButtonHTMLAttributes<HTMLButtonElement> {
/** Class name for the <svg> icon. */
iconClassName?: string
iconClassName?: string;
/** URL to the svg icon. */
src: string
src: string;
/** Text to display next ot the button. */
text?: string
text?: string;
/** Predefined styles to display for the button. */
theme?: 'seamless' | 'outlined' | 'secondary' | 'transparent' | 'dark'
theme?: 'seamless' | 'outlined' | 'secondary' | 'transparent' | 'dark';
/** Override the data-testid */
'data-testid'?: string
'data-testid'?: string;
}
/** A clickable icon. */