number.tsx 307 B

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