Skip to content

Commit

Permalink
fix: update withPadding import (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
chiefcll authored Jun 27, 2024
1 parent 0fbc86a commit 3caef0a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/solid/components/Artwork/Artwork.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

import { type Component, createMemo } from 'solid-js';
import { View } from '@lightningtv/solid';
import { withPadding } from '@lightningtv/solid/primitives';
import { withPadding } from '../../utils/index.js';
import type { Tone } from 'types/types.js';
import styles from './Artwork.styles.js';
import type { ArtworkProps } from './Artwork.types.js';
Expand Down
2 changes: 1 addition & 1 deletion packages/solid/components/Badge/Badge.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/
import { createMemo, type Component } from 'solid-js';
import { Text } from '@lightningtv/solid';
import { withPadding } from '@lightningtv/solid/primitives';
import { withPadding } from '../../utils/index.js';
import styles from './Badge.styles.js';
import type { BadgeProps } from './Badge.types.js';
withPadding; // Preserve the import.
Expand Down

0 comments on commit 3caef0a

Please sign in to comment.