react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 566 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgTrademark(props) {
return (<Svg data-name="Layer 1" viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M9.5 7h-6a1 1 0 000 2h2v7a1 1 0 002 0V9h2a1 1 0 000-2zm11.92.62a1 1 0 00-.54-.54 1 1 0 00-.76 0 1 1 0 00-.33.21L17 10.09l-2.79-2.8a1 1 0 00-.33-.21 1 1 0 00-.76 0 1 1 0 00-.54.54 1 1 0 00-.08.38v8a1 1 0 002 0v-5.59l1.79 1.8a1 1 0 001.42 0l1.79-1.8V16a1 1 0 002 0V8a1 1 0 00-.08-.38z" fill="currentColor"/>
</Svg>);
}
export default SvgTrademark;