X
X

Code Components with Basic CSS

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 />
}