import React from "react" /** * A React component that renders a home SVG icon. * * @param {object} props - The component props. * @param {string} props.color - The color of the SVG icon. * @return {JSX.Element} The rendered SVG element. */ export const FlagSvg = (props: { color: string }): JSX.Element => { const { color } = props return ( ) }