File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
projects/js-packages/components/components Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import { RadioControl as WPRadioControl } from '@wordpress/components';
22import clsx from 'clsx' ;
33import styles from './styles.module.scss' ;
44
5- export interface RadioControlProps {
5+ interface RadioControlProps {
66 /** The current value. */
77 selected : string ;
88
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import clsx from 'clsx';
33import Text from '../text/index.js' ;
44import styles from './style.module.scss' ;
55
6- export interface StatusProps {
6+ interface StatusProps {
77 status ?: 'active' | 'error' | 'inactive' | 'action' | 'initializing' ;
88 label ?: string ;
99 className ?: string ;
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import clsx from 'clsx';
33import { useCallback } from 'react' ;
44import styles from './styles.module.scss' ;
55
6- export interface ToggleControlProps {
6+ interface ToggleControlProps {
77 /** Whether or not the toggle is currently enabled. */
88 checked ?: boolean ;
99
You can’t perform that action at this time.
0 commit comments