mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 04:54:18 +00:00
🗑 Remove Box, as it actually wasn't that useful
This commit is contained in:
parent
ed7d39a65a
commit
c8e8bb5b0a
2 changed files with 0 additions and 22 deletions
|
@ -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>
|
||||
)
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
.Box {
|
||||
display: flex;
|
||||
|
||||
background-color: var(--bg-light);
|
||||
border-radius: 999999px;
|
||||
}
|
||||
|
Loading…
Reference in a new issue