logo.tsx 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. import { ComponentProps } from "solid-js"
  2. export const Mark = (props: { class?: string }) => {
  3. return (
  4. <svg
  5. data-component="logo-mark"
  6. classList={{ [props.class ?? ""]: !!props.class }}
  7. viewBox="0 0 16 20"
  8. fill="none"
  9. xmlns="http://www.w3.org/2000/svg"
  10. >
  11. <path data-slot="logo-logo-mark-shadow" d="M12 16H4V8H12V16Z" fill="var(--icon-weak-base)" />
  12. <path data-slot="logo-logo-mark-o" d="M12 4H4V16H12V4ZM16 20H0V0H16V20Z" fill="var(--icon-strong-base)" />
  13. </svg>
  14. )
  15. }
  16. export const Splash = (props: Pick<ComponentProps<"svg">, "ref" | "class">) => {
  17. return (
  18. <svg
  19. ref={props.ref}
  20. data-component="logo-splash"
  21. classList={{ [props.class ?? ""]: !!props.class }}
  22. viewBox="0 0 80 100"
  23. fill="none"
  24. xmlns="http://www.w3.org/2000/svg"
  25. >
  26. <path d="M60 80H20V40H60V80Z" fill="var(--icon-base)" />
  27. <path d="M60 20H20V80H60V20ZM80 100H0V0H80V100Z" fill="var(--icon-strong-base)" />
  28. </svg>
  29. )
  30. }
  31. export const Logo = (props: { class?: string }) => {
  32. return (
  33. <svg
  34. xmlns="http://www.w3.org/2000/svg"
  35. viewBox="0 0 234 42"
  36. fill="none"
  37. classList={{ [props.class ?? ""]: !!props.class }}
  38. >
  39. <g>
  40. <path d="M18 30H6V18H18V30Z" fill="var(--icon-weak-base)" />
  41. <path d="M18 12H6V30H18V12ZM24 36H0V6H24V36Z" fill="var(--icon-base)" />
  42. <path d="M48 30H36V18H48V30Z" fill="var(--icon-weak-base)" />
  43. <path d="M36 30H48V12H36V30ZM54 36H36V42H30V6H54V36Z" fill="var(--icon-base)" />
  44. <path d="M84 24V30H66V24H84Z" fill="var(--icon-weak-base)" />
  45. <path d="M84 24H66V30H84V36H60V6H84V24ZM66 18H78V12H66V18Z" fill="var(--icon-base)" />
  46. <path d="M108 36H96V18H108V36Z" fill="var(--icon-weak-base)" />
  47. <path d="M108 12H96V36H90V6H108V12ZM114 36H108V12H114V36Z" fill="var(--icon-base)" />
  48. <path d="M144 30H126V18H144V30Z" fill="var(--icon-weak-base)" />
  49. <path d="M144 12H126V30H144V36H120V6H144V12Z" fill="var(--icon-strong-base)" />
  50. <path d="M168 30H156V18H168V30Z" fill="var(--icon-weak-base)" />
  51. <path d="M168 12H156V30H168V12ZM174 36H150V6H174V36Z" fill="var(--icon-strong-base)" />
  52. <path d="M198 30H186V18H198V30Z" fill="var(--icon-weak-base)" />
  53. <path d="M198 12H186V30H198V12ZM204 36H180V6H198V0H204V36Z" fill="var(--icon-strong-base)" />
  54. <path d="M234 24V30H216V24H234Z" fill="var(--icon-weak-base)" />
  55. <path d="M216 12V18H228V12H216ZM234 24H216V30H234V36H210V6H234V24Z" fill="var(--icon-strong-base)" />
  56. </g>
  57. </svg>
  58. )
  59. }