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