diff --git a/public/nsw-logo.svg b/public/nsw-logo.svg new file mode 100644 index 0000000..1d4c4ed --- /dev/null +++ b/public/nsw-logo.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/components/organisms/TopBar/TopBar.stories.tsx b/src/components/organisms/TopBar/TopBar.stories.tsx index 028d6af..a184ca9 100644 --- a/src/components/organisms/TopBar/TopBar.stories.tsx +++ b/src/components/organisms/TopBar/TopBar.stories.tsx @@ -46,22 +46,7 @@ const DotsIcon = () => ( ) const NswLogo = () => ( - - - - - - - - - - - - - - - - + NSW Government ) function IconBtn({ icon, label }: { icon: React.ReactNode; label: string }) { diff --git a/src/components/templates/_story-helpers.tsx b/src/components/templates/_story-helpers.tsx index 3b68836..2f0f609 100644 --- a/src/components/templates/_story-helpers.tsx +++ b/src/components/templates/_story-helpers.tsx @@ -1,22 +1,7 @@ import { type ReactNode } from 'react' export const NswLogo = () => ( - - - - - - - - - - - - - - - - + NSW Government ) export function TopBarAction({ icon, label, onClick }: { icon: ReactNode; label: string; onClick?: () => void }) {