import * as React from "react"; import { useTheme } from "@chakra-ui/core"; const LightningBolt = ({ size = 4, color = "currentColor" }) => { const theme = useTheme(); return ( ); }; LightningBolt.displayName = "LightningBolt"; export default LightningBolt;