logo.tsx 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. export const Mark = (props: { class?: string }) => {
  2. return (
  3. <svg
  4. data-component="logo-mark"
  5. classList={{ [props.class ?? ""]: !!props.class }}
  6. viewBox="0 0 16 20"
  7. fill="none"
  8. xmlns="http://www.w3.org/2000/svg"
  9. >
  10. <path data-slot="logo-logo-mark-shadow" d="M12 16H4V8H12V16Z" fill="var(--icon-weak-base)" />
  11. <path data-slot="logo-logo-mark-o" d="M12 4H4V16H12V4ZM16 20H0V0H16V20Z" fill="var(--icon-strong-base)" />
  12. </svg>
  13. )
  14. }
  15. export const Logo = (props: { class?: string }) => {
  16. return (
  17. <svg
  18. xmlns="http://www.w3.org/2000/svg"
  19. viewBox="0 0 234 42"
  20. fill="none"
  21. classList={{ [props.class ?? ""]: !!props.class }}
  22. >
  23. <g>
  24. <path d="M18 30H6V18H18V30Z" fill="var(--icon-weak-base)" />
  25. <path d="M18 12H6V30H18V12ZM24 36H0V6H24V36Z" fill="var(--icon-base)" />
  26. <path d="M48 30H36V18H48V30Z" fill="var(--icon-weak-base)" />
  27. <path d="M36 30H48V12H36V30ZM54 36H36V42H30V6H54V36Z" fill="var(--icon-base)" />
  28. <path d="M84 24V30H66V24H84Z" fill="var(--icon-weak-base)" />
  29. <path d="M84 24H66V30H84V36H60V6H84V24ZM66 18H78V12H66V18Z" fill="var(--icon-base)" />
  30. <path d="M108 36H96V18H108V36Z" fill="var(--icon-weak-base)" />
  31. <path d="M108 12H96V36H90V6H108V12ZM114 36H108V12H114V36Z" fill="var(--icon-base)" />
  32. <path d="M144 30H126V18H144V30Z" fill="var(--icon-weak-base)" />
  33. <path d="M144 12H126V30H144V36H120V6H144V12Z" fill="var(--icon-strong-base)" />
  34. <path d="M168 30H156V18H168V30Z" fill="var(--icon-weak-base)" />
  35. <path d="M168 12H156V30H168V12ZM174 36H150V6H174V36Z" fill="var(--icon-strong-base)" />
  36. <path d="M198 30H186V18H198V30Z" fill="var(--icon-weak-base)" />
  37. <path d="M198 12H186V30H198V12ZM204 36H180V6H198V0H204V36Z" fill="var(--icon-strong-base)" />
  38. <path d="M234 24V30H216V24H234Z" fill="var(--icon-weak-base)" />
  39. <path d="M216 12V18H228V12H216ZM234 24H216V30H234V36H210V6H234V24Z" fill="var(--icon-strong-base)" />
  40. </g>
  41. </svg>
  42. )
  43. }