Skip to content

Commit

Permalink
rename (files): fix filename style
Browse files Browse the repository at this point in the history
rename filenames styles of Button component
  • Loading branch information
sgrisshk committed Sep 11, 2024
1 parent a7c0008 commit 7de5d29
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {Meta, StoryObj} from '@storybook/react';
import Button from './button';
import Props from "./button.props"
import Button from './Button';
import Props from "./Button.props"

export default {
title: 'Components/Button',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import Props from './button.props';
import Props from './Button.props';
import '../Text/index'
import {getClassName} from "./button.classes";
import {getClassName} from "./Button.classes";

const Button: React.FC<Props> = ({ label, disabled = false, variant = 'filled', className = '', ...props }) => {
return (
Expand Down

0 comments on commit 7de5d29

Please sign in to comment.