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