mirror of
https://github.com/johndoe6345789/low-code-react-app-b.git
synced 2026-04-24 13:44:54 +00:00
12 lines
345 B
TypeScript
12 lines
345 B
TypeScript
import { Tree } from '@phosphor-icons/react'
|
|
|
|
interface TreeIconProps {
|
|
size?: number
|
|
weight?: 'thin' | 'light' | 'regular' | 'bold' | 'fill' | 'duotone'
|
|
className?: string
|
|
}
|
|
|
|
export function TreeIcon({ size = 20, weight = 'duotone', className = '' }: TreeIconProps) {
|
|
return <Tree size={size} weight={weight} className={className} />
|
|
}
|