@montage-ui/icon
v4.0.0-57e6596eb936f928544eaff10c681cc01de8afc8.4
Published
Icon components for the Montage design system
Readme
@montage-ui/icon
Icon components for the Montage design system.
Installation
pnpm i @montage-ui/iconNote:
@montage-ui/iconmust be installed with the same version as other@montage-ui/*packages (e.g.,@montage-ui/core). Mismatched versions can cause duplicate theme contexts and unexpected styling issues.
Usage
import { IconCheck, IconClose } from '@montage-ui/icon';
const Example = () => (
<>
<IconCheck />
<IconClose />
</>
);