diff --git a/src/shared/NcPlayIcon2.tsx b/src/shared/NcPlayIcon2.tsx new file mode 100644 index 0000000..bfdd32c --- /dev/null +++ b/src/shared/NcPlayIcon2.tsx @@ -0,0 +1,38 @@ +import React, { FC } from "react"; + +export interface NcPlayIcon2Props { + className?: string; + iconClass?: string; +} + +const NcPlayIcon2: FC = ({ + className = "w-8 h-8 md:w-10 md:h-10", + iconClass = "w-5 h-5", +}) => { + return ( +
+ + + + + +
+ ); +}; + +export default NcPlayIcon2;