react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 378 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgAlignCenterAlt(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M5 8h14a1 1 0 000-2H5a1 1 0 000 2zm16 3H3a1 1 0 000 2h18a1 1 0 000-2zm-2 5H5a1 1 0 000 2h14a1 1 0 000-2z" fill="currentColor"/>
</Svg>);
}
export default SvgAlignCenterAlt;