MCPcopy
hub / github.com/kuma-ui/kuma-ui / css

Function css

packages/core/src/css.ts:4–6  ·  view source on GitHub ↗
(_strings: TemplateStringsArray)

Source from the content-addressed store, hash-verified

2import { ThemeSystem } from "./theme";
3
4export const css = (_strings: TemplateStringsArray): string => {
5 throw Error('Using the "css" in runtime is not supported.');
6};
7
8export const cx = (...classNames: (string | false | null | undefined)[]) =>
9 classNames.filter((className) => Boolean(className)).join(" ");

Callers 5

HeroFunction · 0.90
css.test.tsFile · 0.90
ThisIsTheCSSFunction · 0.90
HeroFunction · 0.90
ProfileFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected