Skip to content

Commit

Permalink
fix(docs): export issue
Browse files Browse the repository at this point in the history
  • Loading branch information
wingkwong committed Nov 6, 2024
1 parent fb087aa commit 4ddeb4c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion apps/docs/content/components/button/group-use-case.raw.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
DropdownItem,
} from "@nextui-org/react";

export const ChevronDownIcon = () => (
const ChevronDownIcon = () => (
<svg fill="none" height="14" viewBox="0 0 24 24" width="14" xmlns="http://www.w3.org/2000/svg">
<path
d="M17.9188 8.17969H11.6888H6.07877C5.11877 8.17969 4.63877 9.33969 5.31877 10.0197L10.4988 15.1997C11.3288 16.0297 12.6788 16.0297 13.5088 15.1997L15.4788 13.2297L18.6888 10.0197C19.3588 9.33969 18.8788 8.17969 17.9188 8.17969Z"
Expand Down
4 changes: 2 additions & 2 deletions apps/docs/content/components/button/icon-only.raw.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {Button} from "@nextui-org/react";

export const HeartIcon = ({fill = "currentColor", filled, size, height, width, ...props}) => {
const HeartIcon = ({fill = "currentColor", filled, size, height, width, ...props}) => {
return (
<svg
fill={filled ? fill : "none"}
Expand All @@ -21,7 +21,7 @@ export const HeartIcon = ({fill = "currentColor", filled, size, height, width, .
);
};

export const CameraIcon = ({fill = "currentColor", size, height, width, ...props}) => {
const CameraIcon = ({fill = "currentColor", size, height, width, ...props}) => {
return (
<svg
fill="none"
Expand Down
4 changes: 2 additions & 2 deletions apps/docs/content/components/button/icons.raw.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {Button} from "@nextui-org/react";

export const UserIcon = ({fill = "currentColor", size, height, width, ...props}) => {
const UserIcon = ({fill = "currentColor", size, height, width, ...props}) => {
return (
<svg
data-name="Iconly/Curved/Profile"
Expand Down Expand Up @@ -28,7 +28,7 @@ export const UserIcon = ({fill = "currentColor", size, height, width, ...props})
);
};

export const CameraIcon = ({fill = "currentColor", size, height, width, ...props}) => {
const CameraIcon = ({fill = "currentColor", size, height, width, ...props}) => {
return (
<svg
fill="none"
Expand Down

0 comments on commit 4ddeb4c

Please sign in to comment.