import { Props } from "./Props"; export const LogoSmall = ( props: Props & { fillColor?: string; strokeColor: string }, ) => { let { strokeColor, fillColor, ...baseProps } = props; return ( ); };