Add a Boolean property to your component to change behavior, interactivity, or styles.
Use a Boolean prop when you want designers to:
Define the Boolean prop in your Webflow code component with a name.
Optionally, you can add a default value and labels for the true and false values. Additionally, you can add a group and tooltip text.
name: The name for the property.group: The group for this property (optional).tooltip: The tooltip for this property (optional).defaultValue: Default value for all component instances. (optional)trueLabel: Label for the true value in the props panel. (optional)falseLabel: Label for the false value in the props panel. (optional)The Boolean prop provides a boolean value to your React component:
n/a