MCPcopy Create free account
hub / github.com/fontsource/fontsource / IconGuide

Function IconGuide

website/app/components/icons/Guide.tsx:4–31  ·  view source on GitHub ↗
({ height, stroke, ...others }: IconProps)

Source from the content-addressed store, hash-verified

2import type { IconProps } from './types';
3
4const IconGuide = ({ height, stroke, ...others }: IconProps) => {
5 return (
6 <svg
7 xmlns="http://www.w3.org/2000/svg"
8 height={height ?? 20}
9 fill="none"
10 viewBox="0 0 20 20"
11 className={classes.icon}
12 {...others}
13 >
14 <title>Guide Icon</title>
15 <path
16 stroke={stroke}
17 strokeLinecap="round"
18 strokeLinejoin="round"
19 strokeWidth={1.5}
20 d="M3.333 16.25a2.083 2.083 0 0 1 2.084-2.083h11.25"
21 />
22 <path
23 stroke={stroke}
24 strokeLinecap="round"
25 strokeLinejoin="round"
26 strokeWidth={1.5}
27 d="M5.417 1.667h11.25v16.666H5.417a2.083 2.083 0 0 1-2.084-2.083V3.75a2.083 2.083 0 0 1 2.084-2.083v0Z"
28 />
29 </svg>
30 );
31};
32
33export { IconGuide };

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected