Skip to content

Commit

Permalink
chore(docs): add back export
Browse files Browse the repository at this point in the history
  • Loading branch information
wingkwong committed Nov 7, 2024
1 parent 4059b51 commit e671782
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {Breadcrumbs, BreadcrumbItem} from "@nextui-org/react";

const ShoppingCartIcon = (props) => (
export const ShoppingCartIcon = (props) => (
<svg
aria-hidden="true"
fill="none"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {Breadcrumbs, BreadcrumbItem} from "@nextui-org/react";

const HomeIcon = (props) => (
export const HomeIcon = (props) => (
<svg
aria-hidden="true"
fill="none"
Expand All @@ -18,7 +18,7 @@ const HomeIcon = (props) => (
</svg>
);

const MusicIcon = (props) => (
export const MusicIcon = (props) => (
<svg
aria-hidden="true"
fill="none"
Expand All @@ -44,7 +44,7 @@ const MusicIcon = (props) => (
</svg>
);

const ArtistIcon = (props) => (
export const ArtistIcon = (props) => (
<svg
aria-hidden="true"
fill="none"
Expand All @@ -62,7 +62,7 @@ const ArtistIcon = (props) => (
</svg>
);

const AlbumIcon = (props) => (
export const AlbumIcon = (props) => (
<svg
aria-hidden="true"
fill="none"
Expand Down Expand Up @@ -96,7 +96,7 @@ const AlbumIcon = (props) => (
</svg>
);

const SongIcon = (props) => (
export const SongIcon = (props) => (
<svg
aria-hidden="true"
fill="none"
Expand Down

0 comments on commit e671782

Please sign in to comment.