import type { SVGProps } from "react"; export interface SOMProps extends SVGProps { /** * Icon size (width and height) * @default 16 */ size?: number | string; } /** * Somalia — SOM icon from flag category * * @example * * */ export const SOM = ({ size = 16, ...props }: SOMProps) => ( );