summaryrefslogtreecommitdiffhomepage
path: root/packages/ui/src/components/logo.tsx
blob: d3588f30114d4e4f01ab52ea0a8701401969b92e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export const Mark = (props: { class?: string }) => {
  return (
    <svg
      data-component="logo-mark"
      classList={{ [props.class ?? ""]: !!props.class }}
      viewBox="0 0 16 20"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
    >
      <path data-slot="logo-mark-shadow" d="M12 16H4V8H12V16Z" fill="var(--icon-weak-base)" />
      <path data-slot="logo-mark-o" d="M12 4H4V16H12V4ZM16 20H0V0H16V20Z" fill="var(--icon-strong-base)" />
    </svg>
  )
}