MCPcopy Create free account
hub / github.com/Shopify/hydrogen-demo-store / IconClose

Function IconClose

app/components/Icon.tsx:39–59  ·  view source on GitHub ↗
(props: IconProps)

Source from the content-addressed store, hash-verified

37}
38
39export function IconClose(props: IconProps) {
40 return (
41 <Icon {...props} stroke={props.stroke || 'currentColor'}>
42 <title>Close</title>
43 <line
44 x1="4.44194"
45 y1="4.30806"
46 x2="15.7556"
47 y2="15.6218"
48 strokeWidth="1.25"
49 />
50 <line
51 y1="-0.625"
52 x2="16"
53 y2="-0.625"
54 transform="matrix(-0.707107 0.707107 0.707107 0.707107 16 4.75)"
55 strokeWidth="1.25"
56 />
57 </Icon>
58 );
59}
60
61export function IconArrow({direction = 'right'}: IconProps) {
62 let rotate;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected