number.tsx 275 B

1234567891011121314
  1. const NumberPreview = () => (
  2. <svg
  3. viewBox="0 0 70 17"
  4. xmlns="http://www.w3.org/2000/svg"
  5. fill="#444674"
  6. preserveAspectRatio="none"
  7. height="100%"
  8. width="100%"
  9. >
  10. <rect width="50" height="16" rx="1" />
  11. </svg>
  12. );
  13. export default NumberPreview;