import { withProps } from 'recompose'

export const withSVGProps = (component) =>
	withProps(({ size = `40`, fill = `#000000`, options = {} }) => ({
		size,
		fill,
		viewBox: `0 0 24 24`,
		width: size,
		xmlns: `http://www.w3.org/2000/svg`,
	}))(component)
