react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 399 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgChartBar(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M21 20h-1V5a1 1 0 00-2 0v15h-2v-7a1 1 0 00-2 0v7h-2V9a1 1 0 00-2 0v11H8v-3a1 1 0 00-2 0v3H4V3a1 1 0 00-2 0v18a1 1 0 001 1h18a1 1 0 000-2z" fill="currentColor"/>
</Svg>);
}
export default SvgChartBar;