'use client' // src/should-forward-prop.ts import { propNames } from "@chakra-ui/styled-system"; var allPropNames = /* @__PURE__ */ new Set([ ...propNames, "textStyle", "layerStyle", "apply", "noOfLines", "focusBorderColor", "errorBorderColor", "as", "__css", "css", "sx" ]); var validHTMLProps = /* @__PURE__ */ new Set([ "htmlWidth", "htmlHeight", "htmlSize", "htmlTranslate" ]); function shouldForwardProp(prop) { return validHTMLProps.has(prop) || !allPropNames.has(prop); } export { shouldForwardProp }; //# sourceMappingURL=chunk-FDQH4LQI.mjs.map