UNPKG

@jinshuju/field-icons-react-native

Version:

React Native icons for Jinshuju fields

10 lines 711 B
const React = require("react"); import Svg, { Path } from "react-native-svg"; function FieldIconAssociationForm({ 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}<Path d="M18 9h2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2v-4H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v4Zm-2-4.5H4a.5.5 0 0 0-.5.5v8a.5.5 0 0 0 .5.5h2V11a2 2 0 0 1 2-2h8.5V5a.5.5 0 0 0-.5-.5Zm-8 6a.5.5 0 0 0-.5.5v8a.5.5 0 0 0 .5.5h12a.5.5 0 0 0 .5-.5v-8a.5.5 0 0 0-.5-.5H8Z" /></Svg>; } module.exports = FieldIconAssociationForm;