Skip to content

Commit

Permalink
fix: Export Spinner component (#532)
Browse files Browse the repository at this point in the history
  • Loading branch information
dogmar authored Oct 24, 2023
1 parent 3791bc1 commit 7b53e74
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/components/Card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@ const Card = forwardRef(
{...(clickable && {
cursor: 'pointer',
as: 'button',
type: 'button',
})}
{...(clickable &&
!selected &&
Expand Down
2 changes: 0 additions & 2 deletions src/components/Modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,6 @@ function ModalRef(
setBodyLocked(lockBody && open)
}, [lockBody, open, setBodyLocked])

console.log('formprops', formProps)

return (
<HonorableModal
open={open}
Expand Down
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ export { DatePicker } from './components/DatePicker'
export { Switch } from './components/Switch'
export { LightDarkSwitch } from './components/LightDarkSwitch'
export { AnimatedDiv } from './components/AnimatedDiv'
export { Spinner } from './components/Spinner'

// Hooks
export { default as usePrevious } from './hooks/usePrevious'
Expand Down

0 comments on commit 7b53e74

Please sign in to comment.