iconoir/packages/iconoir-react/src/server/AppStore.tsx
2023-07-14 22:52:50 +00:00

29 lines
717 B
TypeScript

import * as React from "react";
function SvgAppStore(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zM10.5 5.5l7 11M13.5 5.5l-7 11M13.5 14h-7M17.5 14H16"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgAppStore);
export default ForwardRef;