mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
11 lines
267 B
TypeScript
11 lines
267 B
TypeScript
import {styled, VariantProps} from "@nextui-org/system";
|
|
|
|
export const StyledCol = styled("div", {
|
|
float: "left",
|
|
boxSizing: "border-box",
|
|
pl: "calc($$rowGap / 2)",
|
|
pr: "calc($$rowGap / 2)",
|
|
});
|
|
|
|
export type ColVariantsProps = VariantProps<typeof StyledCol>;
|