react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 490 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgHorizontalDistributionRight(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M19 2a1 1 0 00-1 1v1h-5a1 1 0 00-1 1v14a1 1 0 001 1h5v1a1 1 0 002 0V3a1 1 0 00-1-1zm-1 16h-4V6h4zM9 2a1 1 0 00-1 1v2H5a1 1 0 00-1 1v12a1 1 0 001 1h3v2a1 1 0 002 0V3a1 1 0 00-1-1zM8 17H6V7h2z" fill="currentColor"/>
</Svg>);
}
export default SvgHorizontalDistributionRight;