@icoms-detection/ui
Version:
This is the OFFICIAL UI library created by Icoms Detection to design their apps.
17 lines (15 loc) • 333 B
text/typescript
import { styled } from "../stitches.config";
export const StyledText = styled("p", {
fontFamily: "$content",
text: "sm",
color: "$neutral_700",
margin: 0,
variants: {
isExtra: {
true: { text: "xs", color: "$neutral_500" },
},
isError: {
true: { text: "xs", color: "$primary_600" },
},
},
});