import React, { SVGProps } from 'react'; import { IconTag } from '../types'; export interface WTWIconProps extends SVGProps { icon: IconTag; } declare const WTWIcon: React.FC; export default WTWIcon;