Hi,
I am trying to use components from Monday’s Vibe design system (https://style.monday.com/), but I am a bit confused.
In some examples for a handful of components I see references to cx and styles, but I don’t know how to import these in my React App.js file. For instance for the Text component I see the following example:
<Text element="div" className={cx(styles.smallRectangle)} style={{
backgroundColor: "black"
}} align={Text.align.CENTER} color={Text.colors.FIXED_LIGHT}>
Fixed light
</Text>
I am able to import Text but I don’t know how to import the functions or components for cx(styles.smallRectangle)
Could you please help.
Thanks.