UNPKG

seti-ramesesv1

Version:

Reusable components and context for Next.js apps

46 lines (41 loc) 1.85 kB
import styled$1 from '../../../@emotion/styled/dist/emotion-styled.esm.js'; import { serializeStyles } from '../../../@emotion/serialize/dist/emotion-serialize.esm.js'; /** * @mui/styled-engine v7.2.0 * * @license MIT * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ function styled(tag, options) { const stylesFactory = styled$1(tag, options); if (process.env.NODE_ENV !== 'production') { return (...styles) => { const component = typeof tag === 'string' ? `"${tag}"` : 'component'; if (styles.length === 0) { console.error([`MUI: Seems like you called \`styled(${component})()\` without a \`style\` argument.`, 'You must provide a `styles` argument: `styled("div")(styleYouForgotToPass)`.'].join('\n')); } else if (styles.some(style => style === undefined)) { console.error(`MUI: the styled(${component})(...args) API requires all its args to be defined.`); } return stylesFactory(...styles); }; } return stylesFactory; } // eslint-disable-next-line @typescript-eslint/naming-convention function internal_mutateStyles(tag, processor) { // Emotion attaches all the styles as `__emotion_styles`. // Ref: https://github.com/emotion-js/emotion/blob/16d971d0da229596d6bcc39d282ba9753c9ee7cf/packages/styled/src/base.js#L186 if (Array.isArray(tag.__emotion_styles)) { tag.__emotion_styles = processor(tag.__emotion_styles); } } // Emotion only accepts an array, but we want to avoid allocations const wrapper = []; // eslint-disable-next-line @typescript-eslint/naming-convention function internal_serializeStyles(styles) { wrapper[0] = styles; return serializeStyles(wrapper); } export { styled as default, internal_mutateStyles, internal_serializeStyles }; //# sourceMappingURL=index.js.map