Skip to content

Commit

Permalink
update to latest lucide icons
Browse files Browse the repository at this point in the history
  • Loading branch information
bbohlender committed Sep 30, 2024
1 parent 61da2ae commit 9afbc00
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions examples/market/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Environment, OrbitControls } from '@react-three/drei'
import { Canvas, useFrame } from '@react-three/fiber'
import { EffectComposer, TiltShift2 } from '@react-three/postprocessing'
import { Root, Container, Image, Text, Fullscreen, DefaultProperties } from '@react-three/uikit'
import { PlusCircle } from '@react-three/uikit-lucide'
import { CirclePlus } from '@react-three/uikit-lucide'
import { Defaults, colors } from '@/theme.js'
import { DialogAnchor } from '@/dialog.js'
import { Tabs, TabsList, TabsContent, TabsTrigger } from '@/tabs.js'
Expand Down Expand Up @@ -84,7 +84,7 @@ export function MarketPage() {
</TabsTrigger>
</TabsList>
<Button marginRight={16}>
<PlusCircle marginRight={8} height={16} width={16} />
<CirclePlus marginRight={8} height={16} width={16} />
<Text>Request Model</Text>
</Button>
</Container>
Expand Down
4 changes: 2 additions & 2 deletions packages/kits/default/src/pagination.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { ComponentInternals, Container, ContainerProperties, Text } from '@react-three/uikit'
import { ChevronLeft, ChevronRight, MoreHorizontal } from '@react-three/uikit-lucide'
import { ChevronLeft, ChevronRight, Ellipsis } from '@react-three/uikit-lucide'
import React, { ReactNode, RefAttributes, forwardRef } from 'react'
import { borderRadius, colors } from './theme.js'

Expand Down Expand Up @@ -118,7 +118,7 @@ export const PaginationEllipsis: (
ref={ref}
{...props}
>
<MoreHorizontal width={16} height={16} />
<Ellipsis width={16} height={16} />
</Container>
)
})
Expand Down

0 comments on commit 9afbc00

Please sign in to comment.