@jinshuju/field-icons-react-native
Version:
React Native icons for Jinshuju fields
10 lines • 1.07 kB
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function FieldIconAssociation({
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="M4 4.5h12a.5.5 0 0 1 .5.5v2.25a.75.75 0 0 0 1.5 0V5a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h3.25a.75.75 0 0 0 0-1.5H4a.5.5 0 0 1-.5-.5V5a.5.5 0 0 1 .5-.5Z" /><Path d="M14 10.75a.75.75 0 0 1 .75-.75h6.5a.75.75 0 0 1 0 1.5h-6.5a.75.75 0 0 1-.75-.75Z" /><Path d="M11.25 9.5a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Z" /><Path d="M14 14.75a.75.75 0 0 1 .75-.75h6.5a.75.75 0 0 1 0 1.5h-6.5a.75.75 0 0 1-.75-.75Z" /><Path d="M11.25 13.5a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Z" /><Path d="M14 18.75a.75.75 0 0 1 .75-.75h6.5a.75.75 0 0 1 0 1.5h-6.5a.75.75 0 0 1-.75-.75Z" /><Path d="M11.25 17.5a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Z" /></Svg>;
}
export default FieldIconAssociation;