Skip to content

Commit 2d276fe

Browse files
committed
docs: update JSDoc comments
1 parent b49bc41 commit 2d276fe

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

src/components/form/CFormSwitch.tsx

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,6 @@ export interface CFormSwitchProps extends HTMLAttributes<HTMLInputElement> {
1313
* The id global attribute defines an identifier (ID) that must be unique in the whole document. [docs]
1414
*/
1515
id?: string
16-
/**
17-
* Group checkboxes or radios on the same horizontal row by adding. [docs]
18-
*/
19-
inline?: boolean
2016
/**
2117
* Set component validation state to invalid. [docs]
2218
*/
@@ -31,10 +27,6 @@ export interface CFormSwitchProps extends HTMLAttributes<HTMLInputElement> {
3127
* @type 'lg' | 'xl'
3228
*/
3329
size?: 'lg' | 'xl'
34-
/**
35-
* Render component as a toggle switch. [docs]
36-
*/
37-
switch?: boolean
3830
/**
3931
* Specifies the type of component. [docs]
4032
*
@@ -82,7 +74,6 @@ export const CFormSwitch = forwardRef<HTMLInputElement, CFormSwitchProps>(
8274
CFormSwitch.propTypes = {
8375
className: PropTypes.string,
8476
id: PropTypes.string,
85-
inline: PropTypes.bool,
8677
invalid: PropTypes.bool,
8778
label: PropTypes.oneOfType([PropTypes.string, PropTypes.node]),
8879
size: PropTypes.oneOf(['lg', 'xl']),

0 commit comments

Comments
 (0)