dollar-sign-icon.tsx 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. import React from "react";
  2. import IconProps from "../../../../types/icon-type";
  3. const DollarSignIcon: React.FC<IconProps> = ({
  4. size = "24",
  5. color = "currentColor",
  6. ...attributes
  7. }) => {
  8. return (
  9. <svg
  10. width={size}
  11. height={size}
  12. viewBox="0 0 24 24"
  13. fill="none"
  14. xmlns="http://www.w3.org/2000/svg"
  15. {...attributes}
  16. >
  17. <path
  18. d="M12 3V21"
  19. stroke={color}
  20. strokeWidth="1.5"
  21. strokeLinecap="round"
  22. strokeLinejoin="round"
  23. />
  24. <path
  25. d="M17 6H9.5C8.57174 6 7.6815 6.31607 7.02513 6.87868C6.36875 7.44129 6 8.20435 6 9C6 9.79565 6.36875 10.5587 7.02513 11.1213C7.6815 11.6839 8.57174 12 9.5 12H14.5C15.4283 12 16.3185 12.3161 16.9749 12.8787C17.6313 13.4413 18 14.2044 18 15C18 15.7956 17.6313 16.5587 16.9749 17.1213C16.3185 17.6839 15.4283 18 14.5 18H6"
  26. stroke={color}
  27. strokeWidth="1.5"
  28. strokeLinecap="round"
  29. strokeLinejoin="round"
  30. />
  31. </svg>
  32. );
  33. };
  34. export default DollarSignIcon;