UNPKG

@jinshuju/field-icons-react-native

Version:

React Native icons for Jinshuju fields

10 lines 1.19 kB
import * as React from "react"; import Svg, { G, Path, Defs, ClipPath, Rect } from "react-native-svg"; function FieldIconReservation({ title, titleId, ...props }) { return <Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" data-slot="icon" width="1em" height="1em" aria-labelledby={titleId} {...props}>{title ? <title id={titleId}>{title}</title> : null}<G clipPath="url(#a)"><Path d="M16.625 14.458a.75.75 0 0 0-1.5 0v2.079c0 .635.345 1.22.9 1.53l.986.547a.75.75 0 1 0 .728-1.311l-.985-.548a.25.25 0 0 1-.129-.218v-2.079Z" /><Path d="M7.875 1.875a.75.75 0 0 1 .75.75v.75h5.5v-.75a.75.75 0 0 1 1.5 0v.75h1.75a2.75 2.75 0 0 1 2.75 2.75v7.009a5.5 5.5 0 0 1-8.273 7.241H5.375a2.75 2.75 0 0 1-2.75-2.75v-11.5a2.75 2.75 0 0 1 2.75-2.75h1.75v-.75a.75.75 0 0 1 .75-.75Zm10.75 4.25c0-.69-.56-1.25-1.25-1.25h-1.75v.75a.75.75 0 0 1-1.5 0v-.75h-5.5v.75a.75.75 0 0 1-1.5 0v-.75h-1.75c-.69 0-1.25.56-1.25 1.25v2.25h14.5v-2.25Zm0 3.75h-14.5v7.75c0 .69.56 1.25 1.25 1.25h5.48a5.5 5.5 0 0 1 7.77-7.014V9.875Zm1.25 6.75a4 4 0 1 0-8 0 4 4 0 0 0 8 0Z" /></G><Defs><ClipPath id="a"><Rect width={24} height={24} /></ClipPath></Defs></Svg>; } export default FieldIconReservation;