UNPKG

@cerberus-design/react

Version:

The Cerberus Design React component library.

17 lines (14 loc) 387 B
import { IndeterminateIcon, CheckmarkIcon } from './icons/checkbox.icons.js'; import { AnimatingUploadIcon } from '../components/AnimatingUploadIcon.js'; const defaultIcons = { checkbox: CheckmarkIcon, fileUploader: AnimatingUploadIcon, indeterminate: IndeterminateIcon }; function defineIcons(icons) { return { ...defaultIcons, ...icons }; } export { defineIcons };