react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 526 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgSignAlt(props) {
return (<Svg data-name="Layer 1" viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M21.78 11.88l-2-2.5A1 1 0 0019 9h-6V3a1 1 0 00-2 0v1H5a1 1 0 00-.78.38l-2 2.5a1 1 0 000 1.24l2 2.5A1 1 0 005 11h6v9H9a1 1 0 000 2h6a1 1 0 000-2h-2v-4h6a1 1 0 00.78-.38l2-2.5a1 1 0 000-1.24zM11 9H5.48l-1.2-1.5L5.48 6H11zm7.52 5H13v-3h5.52l1.2 1.5z" fill="currentColor"/>
</Svg>);
}
export default SvgSignAlt;