react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 471 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgLayersAlt(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M21 2H9a1 1 0 00-1 1v4H6a1 1 0 00-1 1v4H3a1 1 0 00-1 1v8a1 1 0 001 1h8a1 1 0 001-1v-2h4a1 1 0 001-1v-2h4a1 1 0 001-1V3a1 1 0 00-1-1zM10 20H4v-6h6zm5-3h-3v-4a1 1 0 00-1-1H7V9h8zm5-3h-3V8a1 1 0 00-1-1h-6V4h10z" fill="currentColor"/>
</Svg>);
}
export default SvgLayersAlt;