UNPKG

@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.

5 lines 283 B
const ALLOWED_PROPS = ["size", "color", "customColor", "className", "dataTest", "ariaHidden", "reverseOnRtl", "ariaLabel", "dataTest"]; const whiteListProps = props => Object.assign({}, ...ALLOWED_PROPS.map(k => k in props ? { [k]: props[k] } : {})); export default whiteListProps;