import { h, Component } from 'preact';

export default class CrossIcon extends Component {

	static defaultProps = {
	};


	render(props) {
		return (
			<svg width='20' height='20' viewBox='0 0 16 16' fill='red'>
				<path d='M6.837,7.999 L4.388,5.536 L5.558,4.365 L8.007,6.83 L10.472,4.365 L11.642,5.536 L9.203,7.999 L11.642,10.464 L10.475,11.634 L8.008,9.155 L5.528,11.635 L4.358,10.464 L6.837,7.999 z' />
			</svg>
		);
	}
}
