9 lines
145 B
TypeScript
9 lines
145 B
TypeScript
import { styled } from "../stitches.config";
|
|
|
|
const Box = styled("div", {
|
|
// all: "unset",
|
|
boxSizing: "border-box",
|
|
});
|
|
|
|
export default Box;
|