You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
932 B

  1. import React, { FC } from "react";
  2. export interface NcPlayIcon2Props {
  3. className?: string;
  4. iconClass?: string;
  5. }
  6. const NcPlayIcon2: FC<NcPlayIcon2Props> = ({
  7. className = "w-8 h-8 md:w-10 md:h-10",
  8. iconClass = "w-5 h-5",
  9. }) => {
  10. return (
  11. <div
  12. className={`nc-NcPlayIcon2 bg-white relative rounded-full shadow-inner ${className}`}
  13. data-nc-id="NcPlayIcon2"
  14. >
  15. <span className="absolute inset-0 flex items-center justify-center text-primary-500">
  16. <svg
  17. className={iconClass}
  18. width="24"
  19. height="24"
  20. fill="currentColor"
  21. viewBox="0 0 24 24"
  22. >
  23. <path
  24. stroke="currentColor"
  25. strokeLinecap="round"
  26. strokeLinejoin="round"
  27. strokeWidth="1"
  28. d="M18.25 12L5.75 5.75V18.25L18.25 12Z"
  29. ></path>
  30. </svg>
  31. </span>
  32. </div>
  33. );
  34. };
  35. export default NcPlayIcon2;