react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 519 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgLayers(props) {
return (<Svg data-name="Layer 1" viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M2.5 10.56l9 5.2a1 1 0 001 0l9-5.2a1 1 0 000-1.73l-9-5.2a1 1 0 00-1 0l-9 5.2a1 1 0 000 1.73zM12 5.65l7 4-7 4.05-7-4.01zm8.5 7.79L12 18.35l-8.5-4.91a1 1 0 00-1.37.36 1 1 0 00.37 1.37l9 5.2a1 1 0 001 0l9-5.2a1 1 0 00.37-1.37 1 1 0 00-1.37-.36z" fill="currentColor"/>
</Svg>);
}
export default SvgLayers;