@jinshuju/field-icons-react-native
Version:
React Native icons for Jinshuju fields
10 lines • 1.36 kB
JavaScript
import * as React from "react";
import Svg, { G, Path, Defs, ClipPath, Rect } from "react-native-svg";
function FieldIconMarquee({
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="M7.25 5.75A2.75 2.75 0 0 1 10 3h4a2.75 2.75 0 0 1 2.75 2.75v12.5A2.75 2.75 0 0 1 14 21h-4a2.75 2.75 0 0 1-2.75-2.75V5.75ZM10 4.5c-.69 0-1.25.56-1.25 1.25v12.5c0 .69.56 1.25 1.25 1.25h4c.69 0 1.25-.56 1.25-1.25V5.75c0-.69-.56-1.25-1.25-1.25h-4Z" /><Path d="M17.75 6.137a1.75 1.75 0 0 1 2.303-1.66l.75.334A1.75 1.75 0 0 1 22 6.47v11.058a1.75 1.75 0 0 1-1.197 1.66l-.75.334a1.75 1.75 0 0 1-2.303-1.66V6.137Zm1.83-.237a.25.25 0 0 0-.33.237v11.726c0 .17.167.29.33.237l.75-.334a.25.25 0 0 0 .17-.237V6.471a.25.25 0 0 0-.17-.237l-.75-.334Z" /><Path d="M6.25 6.137a1.75 1.75 0 0 0-2.303-1.66l-.75.334A1.75 1.75 0 0 0 2 6.47v11.058a1.75 1.75 0 0 0 1.197 1.66l.75.334a1.75 1.75 0 0 0 2.303-1.66V6.137ZM4.421 5.9a.25.25 0 0 1 .329.237v11.726a.25.25 0 0 1-.329.237l-.75-.334a.25.25 0 0 1-.171-.237V6.471a.25.25 0 0 1 .17-.237l.751-.334Z" /></G><Defs><ClipPath id="a"><Rect width={24} height={24} /></ClipPath></Defs></Svg>;
}
export default FieldIconMarquee;