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