Skip to content

Commit

Permalink
update some icons
Browse files Browse the repository at this point in the history
  • Loading branch information
irsyadadl committed Nov 21, 2024
1 parent ec8a289 commit 71a36c5
Show file tree
Hide file tree
Showing 12 changed files with 25 additions and 25 deletions.
6 changes: 3 additions & 3 deletions app/blocks/navbar/app-navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import * as React from "react"
import { CommandPalette } from "@/components/command-palette"
import { ThemeSwitcher } from "@/components/theme-switcher"
import {
IconBag2,
IconShoppingBag,
IconBasket,
IconBrandApple,
IconChevronLgDown,
Expand Down Expand Up @@ -69,7 +69,7 @@ export function AppNavbar({ children, ...props }: React.ComponentProps<typeof Na
<IconSearch />
</Button>
<Button appearance="plain" size="square-petite" aria-label="Your Bag">
<IconBag2 />
<IconShoppingBag />
</Button>
<ThemeSwitcher appearance="plain" />
</Navbar.Flex>
Expand Down Expand Up @@ -134,7 +134,7 @@ export function AppNavbar({ children, ...props }: React.ComponentProps<typeof Na
<IconSearch />
</Button>
<Button appearance="plain" size="square-petite" aria-label="Your Bag">
<IconBag2 />
<IconShoppingBag />
</Button>
<ThemeSwitcher appearance="plain" />
</Navbar.Flex>
Expand Down
Binary file modified bun.lockb
Binary file not shown.
4 changes: 2 additions & 2 deletions components/docs/anatomies/navbar-anatomy.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { IconBag2, IconBrandApple, IconSearch } from "justd-icons"
import { IconShoppingBag, IconBrandApple, IconSearch } from "justd-icons"
import { Button, Navbar, Separator } from "ui"

export default function NavbarAnatomy() {
Expand Down Expand Up @@ -26,7 +26,7 @@ export default function NavbarAnatomy() {
<IconSearch />
</Button>
<Button appearance="plain" size="square-petite" aria-label="Your Bag">
<IconBag2 />
<IconShoppingBag />
</Button>
</Navbar.Flex>
</Navbar.Compact>
Expand Down
4 changes: 2 additions & 2 deletions components/docs/anatomies/sidebar-anatomy.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { IconBag, IconCreditCard } from "justd-icons"
import { IconShoppingBag, IconCreditCard } from "justd-icons"
import { Sidebar } from "ui"

export default function SidebarAnatomy() {
Expand All @@ -14,7 +14,7 @@ export default function SidebarAnatomy() {
<Sidebar.Item />
</Sidebar.Section>
<Sidebar.Section title="Projects">
<Sidebar.Item icon={IconBag} />
<Sidebar.Item icon={IconShoppingBag} />
<Sidebar.Item icon={IconCreditCard} />
</Sidebar.Section>
<Sidebar.Section collapsible title="Team">
Expand Down
6 changes: 3 additions & 3 deletions components/docs/layouts/navbar/navbar-basic-demo.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"use client"

import {
IconBag2,
IconShoppingBag,
IconBrandApple,
IconChevronLgDown,
IconCommandRegular,
Expand Down Expand Up @@ -32,7 +32,7 @@ export default function NavbarBasicDemo() {
<IconSearch />
</Button>
<Button appearance="plain" size="square-petite" aria-label="Your Bag">
<IconBag2 />
<IconShoppingBag />
</Button>
</div>
<Separator orientation="vertical" className="h-6 ml-1 mr-3" />
Expand Down Expand Up @@ -91,7 +91,7 @@ export default function NavbarBasicDemo() {
<IconSearch />
</Button>
<Button appearance="plain" size="square-petite" aria-label="Your Bag">
<IconBag2 />
<IconShoppingBag />
</Button>
</Navbar.Flex>
</Navbar.Flex>
Expand Down
4 changes: 2 additions & 2 deletions components/docs/layouts/navbar/navbar-creating-demo.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use client"

import { IconBag2, IconBrandGoogle, IconSearch } from "justd-icons"
import { IconShoppingBag, IconBrandGoogle, IconSearch } from "justd-icons"
import { Button, Navbar } from "ui"

export default function AppNavbar(props: React.ComponentProps<typeof Navbar>) {
Expand All @@ -27,7 +27,7 @@ export default function AppNavbar(props: React.ComponentProps<typeof Navbar>) {
<IconSearch />
</Button>
<Button appearance="plain" size="square-petite" aria-label="Your Bag">
<IconBag2 />
<IconShoppingBag />
</Button>
</Navbar.Flex>
</Navbar.Flex>
Expand Down
4 changes: 2 additions & 2 deletions components/docs/layouts/navbar/navbar-current-demo.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use client"

import { IconBag2, IconBrandApple, IconSearch } from "justd-icons"
import { IconShoppingBag, IconBrandApple, IconSearch } from "justd-icons"
import { Button, Navbar } from "ui"

export default function NavbarCurrentDemo() {
Expand Down Expand Up @@ -29,7 +29,7 @@ export default function NavbarCurrentDemo() {
<IconSearch />
</Button>
<Button appearance="plain" size="square-petite" aria-label="Your Bag">
<IconBag2 />
<IconShoppingBag />
</Button>
</Navbar.Flex>
</Navbar.Flex>
Expand Down
4 changes: 2 additions & 2 deletions components/docs/layouts/navbar/navbar-floating-demo.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use client"

import { IconBag2, IconBrandApple, IconSearch } from "justd-icons"
import { IconShoppingBag, IconBrandApple, IconSearch } from "justd-icons"
import { Button, Navbar } from "ui"

export default function NavbarFloatingDemo() {
Expand Down Expand Up @@ -29,7 +29,7 @@ export default function NavbarFloatingDemo() {
<IconSearch />
</Button>
<Button appearance="plain" size="square-petite" aria-label="Your Bag">
<IconBag2 />
<IconShoppingBag />
</Button>
</Navbar.Flex>
</Navbar.Flex>
Expand Down
4 changes: 2 additions & 2 deletions components/docs/layouts/navbar/navbar-icon-demo.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {
IconBag2,
IconShoppingBag,
IconBrandApple,
IconBrandJustd,
IconChart3,
Expand Down Expand Up @@ -54,7 +54,7 @@ export default function NavbarIconDemo() {
<IconSearch />
</Button>
<Button appearance="plain" size="square-petite" aria-label="Your Bag">
<IconBag2 />
<IconShoppingBag />
</Button>
</Navbar.Flex>
<Separator orientation="vertical" className="h-6 ml-1 mr-3" />
Expand Down
4 changes: 2 additions & 2 deletions components/docs/layouts/navbar/navbar-intent-demo.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use client"

import { IconBag2, IconBrandApple, IconSearch } from "justd-icons"
import { IconShoppingBag, IconBrandApple, IconSearch } from "justd-icons"
import { Button, Navbar } from "ui"

export default function NavbarIntentDemo() {
Expand Down Expand Up @@ -29,7 +29,7 @@ export default function NavbarIntentDemo() {
<IconSearch />
</Button>
<Button appearance="plain" size="square-petite" aria-label="Your Bag">
<IconBag2 />
<IconShoppingBag />
</Button>
</Navbar.Flex>
</Navbar.Flex>
Expand Down
4 changes: 2 additions & 2 deletions components/docs/layouts/navbar/navbar-logo-demo.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use client"

import { IconBag2, IconBrandApple, IconSearch } from "justd-icons"
import { IconShoppingBag, IconBrandApple, IconSearch } from "justd-icons"
import { Button, Navbar } from "ui"

export default function NavbarLogoDemo() {
Expand All @@ -25,7 +25,7 @@ export default function NavbarLogoDemo() {
<IconSearch />
</Button>
<Button appearance="plain" size="square-petite" aria-label="Your Bag">
<IconBag2 />
<IconShoppingBag />
</Button>
</Navbar.Flex>
</Navbar.Flex>
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@
"clsx": "^2.1.1",
"cmdk": "^1.0.4",
"color-namer": "^1.4.0",
"embla-carousel-autoplay": "^8.4.0",
"embla-carousel-react": "^8.4.0",
"embla-carousel-autoplay": "^8.5.1",
"embla-carousel-react": "^8.5.1",
"framer-motion": "12.0.0-alpha.1",
"input-otp": "^1.4.1",
"justd-icons": "^1.7.9",
"justd-icons": "^1.8.0",
"next": "^15.0.3",
"next-themes": "^0.2.1",
"ntcjs": "^1.1.3",
Expand Down

0 comments on commit 71a36c5

Please sign in to comment.