UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

15 lines (12 loc) 276 B
'use client'; import { forwardRef } from 'react'; function identity(value) { return value; } function factory(ui) { const Component = forwardRef(ui); Component.extend = identity; return Component; } export { factory, identity }; //# sourceMappingURL=factory.mjs.map