Files
penx/apps/extension/components/Logo.tsx
2025-04-30 15:01:54 +08:00

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)}
/>
)
}