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