mirror of
https://github.com/penxio/penx.git
synced 2026-04-19 03:03:06 -04:00
15 lines
248 B
TypeScript
15 lines
248 B
TypeScript
import { cn } from '@penx/utils'
|
|
|
|
interface Props {
|
|
className?: string
|
|
}
|
|
export function Logo({ className }: Props) {
|
|
return (
|
|
<img
|
|
src="https://penx.io/logo.png"
|
|
alt=""
|
|
className={cn('h-20 w-20', className)}
|
|
/>
|
|
)
|
|
}
|