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