diff --git a/src/shared/NcPlayIcon.tsx b/src/shared/NcPlayIcon.tsx new file mode 100644 index 0000000..cfc1287 --- /dev/null +++ b/src/shared/NcPlayIcon.tsx @@ -0,0 +1,36 @@ +import React, { FC } from "react"; + +export interface NcPlayIconProps { + className?: string; +} + +const NcPlayIcon: FC = ({ className = "" }) => { + return ( +
+
+ + + + + +
+
+ ); +}; + +export default NcPlayIcon;