{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "logo", "title": "Logo", "description": "NSW Government logo component.", "dependencies": [ "clsx" ], "registryDependencies": [ "https://ui.digital.nsw.gov.au/registry/r/theme.json" ], "files": [ { "path": "src/components/logo.tsx", "content": "import clsx from 'clsx'\nimport type { ComponentPropsWithoutRef, Ref } from 'react'\n\ntype LogoProps = ComponentPropsWithoutRef<'svg'> & {\n logoType?: 'default' | 'reversed' | 'mono-white' | 'mono-black'\n ref?: Ref\n}\n\nexport function Logo({ logoType = 'default', ref, ...props }: LogoProps) {\n return (\n <>\n NSW Government\n \n \n )\n}\n\nexport type { LogoProps }\n", "type": "registry:ui", "target": "components/logo.tsx" } ], "type": "registry:ui", "meta": { "nswdsVersion": "5.1.0" } }