import React from 'react' interface BaseIconProps { color: string pushRight?: boolean children: React.ReactNode } const BaseIcon = ({ color, pushRight = true, children }: BaseIconProps) => ( {children} ) export default BaseIcon