Skip to content

Logo

The Synergy wordmark logo rendered as an inline SVG. Inherits currentColor for easy theming.

pnpm dlx shadcn@latest add https://ui.synergyshock.com/r/synergy/logo.json
import { Logo } from "@/components/ui/synergy/logo"
export default function App() {
return <Logo className="h-8" />
}

Control the size with standard Tailwind utilities.

<Logo className="h-6" />
<Logo className="h-10" />
<Logo className="h-16" />

The SVG uses currentColor, so set the color with Tailwind or inline styles.

<Logo className="h-10 text-blue-500" />
PropTypeDefaultDescription
classNamestringCSS class applied to the <svg> element.
...propsReact.ComponentProps<"svg">Any standard SVG attributes.