Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
VTEX committed Sep 16, 2021
1 parent 5296e17 commit c8120a5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 12 deletions.
4 changes: 1 addition & 3 deletions packages/store-ui/src/atoms/Spinner/Spinner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@ const Spinner = forwardRef<HTMLDivElement, SpinnerProps>(function Spinner(
{ children, testId = 'store-spinner', ...props },
ref
) {
return (
<span ref={ref} data-store-spinner data-testid={testId} {...props} />
)
return <span ref={ref} data-store-spinner data-testid={testId} {...props} />
})

export default Spinner
9 changes: 0 additions & 9 deletions packages/store-ui/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,6 @@ export type { SkeletonProps } from './atoms/Skeleton'
export { default as Spinner } from './atoms/Spinner'
export type { SpinnerProps } from './atoms/Spinner'

export { default as List } from './atoms/List'
export type { ListProps } from './atoms/List'

export { default as Skeleton } from './atoms/Skeleton'
export type { SkeletonProps } from './atoms/Skeleton'

export { default as Spinner } from './atoms/Spinner'
export type { SpinnerProps } from './atoms/Spinner'

// Molecules
export { default as Bullets } from './molecules/Bullets'
export type { BulletsProps } from './molecules/Bullets'
Expand Down

0 comments on commit c8120a5

Please sign in to comment.