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