import React from 'react'; import { StyledComponentClass } from 'styled-components'; import { ColorProp, Theme } from '../types'; export interface Props extends React.HTMLProps { children: React.ReactNode; className?: string; color?: ColorProp; } interface IconComp extends StyledComponentClass & React.HTMLAttributes & Props, Theme> { } declare const Icon: IconComp; export default Icon;