react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 434 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgMultiply(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M13.41 12l6.3-6.29a1 1 0 10-1.42-1.42L12 10.59l-6.29-6.3a1 1 0 00-1.42 1.42l6.3 6.29-6.3 6.29a1 1 0 000 1.42 1 1 0 001.42 0l6.29-6.3 6.29 6.3a1 1 0 001.42 0 1 1 0 000-1.42z" fill="currentColor"/>
</Svg>);
}
export default SvgMultiply;