@slashid/react-primitives
Version:
Primitive components for the /id React SDK
20 lines (16 loc) • 447 B
text/typescript
import { style } from "@vanilla-extract/css";
import { publicVariables, theme } from "../../theme/theme.css";
export const divider = style({
display: "flex",
alignItems: "center",
margin: `${theme.space[6]} 0`,
gap: theme.space[2],
});
export const content = style({
color: publicVariables.color.placeholder,
});
export const hr = style({
all: "unset",
width: "100%",
borderTop: `1px solid ${publicVariables.color.smooth}`,
});