Skip to content

Commit 878df52

Browse files
committed
Remove changes related to interface exports
1 parent 93a48e4 commit 878df52

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

projects/js-packages/components/components/radio-control/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { RadioControl as WPRadioControl } from '@wordpress/components';
22
import clsx from 'clsx';
33
import styles from './styles.module.scss';
44

5-
export interface RadioControlProps {
5+
interface RadioControlProps {
66
/** The current value. */
77
selected: string;
88

projects/js-packages/components/components/status/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import clsx from 'clsx';
33
import Text from '../text/index.js';
44
import 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;

projects/js-packages/components/components/toggle-control/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import clsx from 'clsx';
33
import { useCallback } from 'react';
44
import 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

0 commit comments

Comments
 (0)