@kiwicom/orbit-components
Version:
Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.
15 lines (12 loc) • 441 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
const ALLOWED_PROPS = ["size", "color", "customColor", "className", "dataTest", "ariaHidden", "reverseOnRtl", "ariaLabel", "dataTest"];
const whiteListProps = props => // $FlowExpectedError
Object.assign({}, ...ALLOWED_PROPS.map(k => k in props ? {
[k]: props[k]
} : {}));
var _default = whiteListProps;
exports.default = _default;