UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

15 lines (14 loc) 2.54 kB
import { memo } from 'react'; import Svg, { Path } from 'react-native-svg'; const Icon = memo((_props) => { const { color = 'black', size = 24, ...props } = _props; return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}> <Path d="M10.82 8.427c-.76-1.085-1.046-1.872-1.108-2.445-.059-.54.073-.97.335-1.383.283-.447.708-.862 1.248-1.353.505-.458 1.137-1.003 1.633-1.62L11.37.374c-.416.517-.928.947-1.418 1.391-.534.485-1.149 1.062-1.593 1.764-.466.735-.75 1.611-.635 2.67.112 1.026.588 2.132 1.458 3.375zm1.25-3.03c.284-.684.861-1.37 1.78-2.156l1.3 1.518c-.831.713-1.129 1.153-1.235 1.407-.104.25-.035.499.035.747.084.296.223.79.214 1.322-.012.706-.254 1.452-.832 2.32l-1.664-1.11c.422-.632.492-1.01.496-1.243.005-.295-.072-.46-.197-.96-.12-.478-.21-1.097.102-1.845M6.141 10c.47-.314 1.05-.474 1.592-.604L7.266 7.45c-.813.196-1.551.46-2.112.807C4.644 8.573 4 9.136 4 10c0 .726.486 1.306 1.065 1.686a2.5 2.5 0 0 0-.065.572c0 .98.418 1.807 1.143 2.42-.107.3-.155.634-.14.968-.777.151-1.536.373-2.17.664-.432.198-.858.451-1.19.777-.334.329-.643.804-.643 1.413 0 .427.189.772.374 1.01.189.242.432.449.684.624.506.351 1.184.669 1.959.936 1.558.538 3.669.93 5.983.93 3.327 0 5.663-.384 7.19-.782.763-.2 1.324-.402 1.704-.561.21-.088.42-.181.616-.297.01-.006-1.028-1.715-1.024-1.718-.564.294-1.188.48-1.8.64-1.349.352-3.513.718-6.686.718-2.104 0-3.993-.358-5.33-.82-.532-.184-1.088-.398-1.541-.74.115-.09.29-.199.538-.312.558-.256 1.323-.466 2.14-.591q.344.365.814.64c.965.562 2.292.823 3.879.823 1.31 0 2.258-.132 2.898-.274.356-.078.714-.167 1.042-.328.003-.002-.881-1.795-.881-1.795q-.291.105-.593.17c-.489.109-1.29.227-2.466.227-1.413 0-2.336-.24-2.871-.551-.426-.248-.589-.524-.622-.824.868.253 1.895.375 3.056.375 1.463 0 2.518-.143 3.228-.297.386-.083.775-.179 1.134-.346.02-.01-.857-1.807-.857-1.807a4.4 4.4 0 0 1-.7.198c-.56.121-1.473.252-2.806.252-1.603 0-2.67-.264-3.302-.623-.471-.268-.678-.568-.74-.89 1.24.326 2.805.513 4.48.513 1.817 0 3.502-.22 4.783-.598l-.566-1.918c-1.054.311-2.54.516-4.217.516-1.724 0-3.245-.216-4.302-.542-.5-.153-.846-.316-1.056-.458m11.448.746c1.213-.11 1.66.188 1.804.342.149.16.201.408.136.67-.116.464-.443.914-.973 1.328-.529.413-1.2.74-1.873.965l.632 1.897c.828-.276 1.718-.698 2.471-1.285.75-.586 1.424-1.385 1.683-2.42.185-.74.112-1.741-.614-2.52-.73-.782-1.909-1.109-3.447-.969z"/> </Svg>); }); Icon.displayName = 'JavaLine'; /** * Remix Icon: Java Line * @see {@link https://remixicon.com/icon/java-line Remix Icon Docs} */ export const JavaLine = Icon;