/** * src/icons/index.ts — hand-authored barrel for the Reapit icon set. * * Exports: * - `makeIcon` — factory function for creating icon components. * - `Icon` — namespace containing `Props`, `Size`, and `Colour` types. * - All generated icon components (re-exported from `./generated`). * * Usage: * ```tsx * import { AddIcon, ArrowUpIcon, Icon } from '@reapit/elemental' * * * ``` */ export { makeIcon } from './make-icon'; export type { Icon } from './make-icon'; export * from './generated';