Skip to content
This repository has been archived by the owner on Aug 29, 2023. It is now read-only.

Commit

Permalink
feat: further improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
rudigier committed Mar 23, 2023
1 parent 4ff55aa commit 48119dd
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion src/components/Molecules/Button/Button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ export function Button<
T extends {
className?: string;
type?: 'button' | 'submit' | 'reset';
title?: string;
} = ButtonHTMLAttributes<HTMLElement>
>({ children, component, colorScheme = 'violet', size = 'M', icon = 'mumble', ...props }: TButton<T>): JSX.Element {
const Tag = component || 'button';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ export function InteractionButton<
T extends {
className?: string;
type?: 'button' | 'submit' | 'reset';
title?: string;
} = ButtonHTMLAttributes<HTMLElement>
>({ component, colorScheme, buttonText, iconName, isActive = false, ...props }: TInteractionButton<T>): JSX.Element {
const Tag = component || 'button';
Expand Down
1 change: 0 additions & 1 deletion src/components/Molecules/Navi/NaviButton.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,5 @@ export const NaviButton = Template.bind({});

NaviButton.args = {
icon: 'settings',
title: 'Settings',
children: 'Settings',
};
1 change: 0 additions & 1 deletion src/components/Molecules/Navi/NaviButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ export function NaviButton<
T extends {
className?: string;
type?: 'button' | 'submit' | 'reset';
title?: string;
} = ButtonHTMLAttributes<HTMLElement>
>({ children, component, icon, ...props }: TNaviButton<T>): JSX.Element {
const Tag = component || 'button';
Expand Down

0 comments on commit 48119dd

Please sign in to comment.