BoxIcon.tsx 475 B

12345678910111213141516171819202122232425
  1. import * as React from 'react'
  2. export function BoxIcon({
  3. fill = 'none',
  4. stroke = 'currentColor',
  5. strokeWidth = 2,
  6. }: {
  7. fill?: string
  8. stroke?: string
  9. strokeWidth?: number
  10. }): JSX.Element {
  11. return (
  12. <svg
  13. width="24"
  14. height="24"
  15. viewBox="0 0 24 24"
  16. stroke={stroke}
  17. strokeWidth={strokeWidth}
  18. fill={fill}
  19. xmlns="http://www.w3.org/2000/svg"
  20. >
  21. <rect x="4" y="4" width="16" height="16" rx="2" />
  22. </svg>
  23. )
  24. }