@jinshuju/field-icons-react-native
Version:
React Native icons for Jinshuju fields
10 lines • 779 B
JavaScript
import * as React from "react";
import Svg, { G, Path, Defs, ClipPath, Rect } from "react-native-svg";
function FieldIconMail({
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="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2Zm15.265 1.5H4.735l6.506 4.975a1.25 1.25 0 0 0 1.518 0L19.265 5.5ZM3.5 6.444V18c0 .272.228.5.5.5h16c.272 0 .5-.228.5-.5V6.444l-6.83 5.223a2.75 2.75 0 0 1-3.34 0L3.5 6.444Z" /></G><Defs><ClipPath id="a"><Rect width={24} height={24} /></ClipPath></Defs></Svg>;
}
export default FieldIconMail;