Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
shanimal08 committed Feb 26, 2025
1 parent b108292 commit 084b0b0
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/components/elements/buttons/button.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,16 @@ import { ButtonHTMLAttributes, ReactNode } from 'react';
import { ThemeColourGroup } from '@app/theme/palettes/colors.ts';

type ButtonVariant = 'primary' | 'secondary' | 'outlined' | 'gradient';
type ButtonColor = 'transparent' | 'primary' | 'secondary' | 'gradient' | 'error' | 'warning' | 'info' | 'grey' | ThemeColourGroup;
type ButtonColor =
| 'transparent'
| 'primary'
| 'secondary'
| 'gradient'
| 'error'
| 'warning'
| 'info'
| 'grey'
| ThemeColourGroup;
export type ButtonSize = 'xs' | 'small' | 'medium' | 'large';

export type IconPosition = 'end' | 'start' | 'hug';
Expand Down

0 comments on commit 084b0b0

Please sign in to comment.