import React, {ComponentProps, FC} from "react" const SVGSkeleton: FC = ({paths, viewBox = "0 0 24 24", className = "", title = null, ...props}) => { return {title && { title }} {paths} } interface SVGSkeletonProps { paths: string, viewBox?: string, className?: string, title?: string, } export const DraggableSVG: FC> = (props) => SVGSkeleton({ paths: , ...props }) export const PlaySVG: FC> = (props) => SVGSkeleton({ viewBox: "0 0 448 512", paths: , ...props }) export const StopSVG: FC> = (props) => SVGSkeleton({ paths: , ...props })