1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00
2020-09-28 11:54:00 -07:00

22 lines
626 B
JavaScript

import * as React from "react";
import { useTheme } from "@chakra-ui/core";
export const LightningBolt = ({ size = 4, color = "currentColor" }) => {
const theme = useTheme();
return (
<svg
width={theme.space[size]}
height={theme.space[size]}
viewBox="0 0 16 16"
fill={theme.colors[color]}
xmlns="http://www.w3.org/2000/svg"
>
<path
fillRule="evenodd"
d="M11.251.068a.5.5 0 0 1 .227.58L9.677 6.5H13a.5.5 0 0 1 .364.843l-8 8.5a.5.5 0 0 1-.842-.49L6.323 9.5H3a.5.5 0 0 1-.364-.843l8-8.5a.5.5 0 0 1 .615-.09z"
clipRule="evenodd"
/>
</svg>
);
};