react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 449 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgArchiveAlt(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M10 13h4a1 1 0 000-2h-4a1 1 0 000 2zm9-10H5a3 3 0 00-1 5.82V18a3 3 0 003 3h10a3 3 0 003-3V8.82A3 3 0 0019 3zm-1 15a1 1 0 01-1 1H7a1 1 0 01-1-1V9h12zm1-11H5a1 1 0 010-2h14a1 1 0 010 2z" fill="currentColor"/>
</Svg>);
}
export default SvgArchiveAlt;