Notes
—
Link
Basic Code Component with CSS:
import styled from "styled-components" export default function Hexagon() { const Component = styled.div` width: 141px; height: 148px; background: red; ` return <Component /> }