import { FC, SVGAttributes } from 'react'; import styles from './logo.module.scss'; export type LogoProps = SVGAttributes & { /** * SVG Image title. */ title?: string; }; /** * Logo component. * * Render a SVG logo. */ export const Logo: FC = ({ title, ...props }) => { return ( {title ? {title} : null} ); };