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.

8 lines (6 loc) 307 B
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] } : {})); export default whiteListProps;