SeparatorIcon.tsx 473 B

123456789101112131415161718192021
  1. import clsx from "clsx";
  2. const SeparatorIcon = (props: React.ComponentProps<"svg">) => {
  3. return (
  4. <svg
  5. className={clsx("h-3 w-3", props.className)}
  6. fill="none"
  7. stroke="currentColor"
  8. strokeWidth="1.5"
  9. viewBox="0 0 24 24"
  10. xmlns="http://www.w3.org/2000/svg"
  11. >
  12. <path
  13. d="m8.25 4.5 7.5 7.5-7.5 7.5"
  14. strokeLinecap="round"
  15. strokeLinejoin="round"
  16. />
  17. </svg>
  18. );
  19. };
  20. export default SeparatorIcon;