Skip to content

Instantly share code, notes, and snippets.

@zachhardesty7
Last active December 29, 2019 20:21
Show Gist options
  • Save zachhardesty7/d7b404035eebb225f33f9500533dee26 to your computer and use it in GitHub Desktop.
Save zachhardesty7/d7b404035eebb225f33f9500533dee26 to your computer and use it in GitHub Desktop.
// Icons.jsx
export const Icons = ({
className,
inverse,
children
}) => (
<div>
{React.Children.map(children, icon => (
React.cloneElement(icon, { className, inverse, ...icon.props })
))}
</div>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment