Web: Components: ToggleContent - descriptions changed

This commit is contained in:
Sergei Kosyrev 2023-04-17 20:01:28 +05:30
parent 81da44eeb3
commit 3dc4d2f0e6

View File

@ -78,14 +78,14 @@ ToggleContent.propTypes = {
className: PropTypes.string,
/** Accepts id */
id: PropTypes.string,
/** State of component */
/** Displays the component's state */
isOpen: PropTypes.bool,
/** Define label for header */
/** Sets the header label */
label: PropTypes.string.isRequired,
onChange: PropTypes.func,
/** Accepts css style */
style: PropTypes.oneOfType([PropTypes.object, PropTypes.array]),
/** Enable/disable toggle */
/** Enables/disables toggle */
enableToggle: PropTypes.bool,
};