Skip to content

Commit

Permalink
refactor: changes the StartStopButton component to its place
Browse files Browse the repository at this point in the history
  • Loading branch information
devgustavosantos committed Jul 25, 2024
1 parent 1016500 commit 4fc16e2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { HandPalm, Play } from '@phosphor-icons/react';
import { styled, css } from 'styled-components';

import { HandPalm, Play } from '@phosphor-icons/react';

import { ButtonPlayStopProps } from './types';

const Container = styled.button<ButtonPlayStopProps>`
Expand Down
File renamed without changes.
4 changes: 3 additions & 1 deletion src/pages/Home/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/* eslint-disable import-helpers/order-imports */
import { Minus, Plus } from '@phosphor-icons/react';

import { StartStopButton } from './components/StartStopButton';
import { StartStopButton } from '@components/StartStopButton';

import { useHome } from './hook';
import * as S from './styles';
import { DESIRED_TIME } from './utils';
Expand Down

0 comments on commit 4fc16e2

Please sign in to comment.