react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 438 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgLabelAlt(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M15 12a1 1 0 101-1 1 1 0 00-1 1zm6.71-.71l-5-5A1 1 0 0016 6H5a3 3 0 00-3 3v6a3 3 0 003 3h11a1 1 0 00.71-.29l5-5a1 1 0 000-1.42zM15.59 16H5a1 1 0 01-1-1V9a1 1 0 011-1h10.59l4 4z" fill="currentColor"/>
</Svg>);
}
export default SvgLabelAlt;