import Color from "color"; import * as React from "react"; import { ThemedSvgProps } from "./hocTypings"; import { getDisplayName } from "./utils"; export function asThemedWithOpacitySvg< C extends React.ComponentType>, ResolvedProps = JSX.LibraryManagedAttributes> >(WrappedComponent: C) { return class AsThemedWithOpacitSvg extends React.PureComponent { static displayName = `asThemedWithOpacitySvg(${getDisplayName( WrappedComponent )})`; static defaultProps = { className: "ddbc-svg--themed", }; render() { return ( ); } }; }