/** * The CBAR icon set, importable at `/icons`. * * 250 icons in nine categories, each drawn twice by CBAR and selected with a * `variant` prop (`` outline, ``), plus * the aliases and Lucide keepers in `./icons`. `iconManifest` describes the set * without pulling any geometry in. * * They are deliberately absent from the root barrel: names like `CheckIcon` are * common enough to collide with an app's own icon set, and an icon import * should be an explicit choice rather than something the barrel drags along. * Nothing here has side effects, so a bundler keeps only the icons an app * actually renders. */ export { Icon, type IconProps, type IconBaseProps, type IconVariant, type CbarIconProps, } from './icon'; export * from './generated'; export * from './icons';