import * as React from 'react'; interface IconProps { children: React.ReactNode; className?: string; // FIX: Add style prop to allow inline styling of the SVG icon. style?: React.CSSProperties; } export const Icon: React.FC = ({ children, className, style }) => { return ( {children} ); };