1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-22 13:04:19 +00:00

🗑 Remove Box, as it actually wasn't that useful

This commit is contained in:
Stefano Pigozzi 2021-04-21 01:08:54 +02:00
parent ed7d39a65a
commit c8e8bb5b0a
Signed by untrusted user who does not match committer: steffo
GPG key ID: 6965406171929D01
2 changed files with 0 additions and 22 deletions

View file

@ -1,15 +0,0 @@
import React from "react"
import Style from "./Box.module.css"
import classNames from "classnames"
export default function Box({ children, className, ...props }) {
return (
<div
className={classNames(Style.Box, className)}
{...props}
>
{children}
</div>
)
}

View file

@ -1,7 +0,0 @@
.Box {
display: flex;
background-color: var(--bg-light);
border-radius: 999999px;
}