import React from 'react'; import styled from 'styled-components/macro'; export type IconProps = { width: number | string; height: number | string; className?: string; onClick?: () => void; }; type Props = { width: number | string; height: number | string; viewBox: string; className?: string; onClick?: () => void; }; const Svg = styled.svg` fill: ${props => props.theme.colors.text.primary}; stroke: ${props => props.theme.colors.text.primary}; `; const Icon: React.FC = ({ width, height, viewBox, className, onClick, children }) => { return ( { if (onClick) { onClick(); } }} className={className} width={width} height={height} xmlns="http://www.w3.org/2000/svg" viewBox={viewBox} > {children} ); }; export default Icon;