@cerberus-design/react
Version:
The Cerberus Design React component library.
21 lines (20 loc) • 524 B
JavaScript
// src/components/field/start-indicator.tsx
import { cx } from "styled-system/css";
import { field } from "styled-system/recipes";
import { jsx } from "react/jsx-runtime";
function FieldStartIndicator(props) {
const styles = field();
if (!props.children) return null;
return /* @__PURE__ */ jsx(
"span",
{
...props,
"data-part": "start-indicator",
className: cx(props.className, styles.startIndicator)
}
);
}
export {
FieldStartIndicator
};
//# sourceMappingURL=chunk-EMDNETC7.js.map