mirror of
https://github.com/johndoe6345789/low-code-react-app-b.git
synced 2026-04-30 00:24:56 +00:00
10 lines
321 B
TypeScript
10 lines
321 B
TypeScript
import { Code } from '@phosphor-icons/react'
|
|
|
|
export function AppLogo() {
|
|
return (
|
|
<div className="w-8 h-8 sm:w-10 sm:h-10 rounded-lg bg-gradient-to-br from-primary to-accent flex items-center justify-center shrink-0">
|
|
<Code size={20} weight="duotone" className="text-white sm:w-6 sm:h-6" />
|
|
</div>
|
|
)
|
|
}
|