UNPKG

@kuma-ui/core

Version:

🐻 Kuma UI is a utility-first, zero-runtime CSS-in-JS library that offers an outstanding developer experience and optimized performance.

16 lines (15 loc) 275 B
// src/styled.ts function _styled(Component) { const fn = (strings) => { throw Error('Using the "styled" tag in runtime is not supported.'); }; return fn; } var styled = new Proxy(_styled, { get(target, key) { return target(key); } }); export { styled };