Skip to content

Commit 5bd47a4

Browse files
Fix import statement formatting in Selection.tsx
1 parent bb7762b commit 5bd47a4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/react/src/ActionList/Selection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import classes from './ActionList.module.css'
88
import Radio from '../Radio'
99
import {warning} from '../utils/warning'
1010

11-
export type SelectionProps = Pick<ActionListItemProps, 'selected' | 'className'>
11+
type SelectionProps = Pick<ActionListItemProps, 'selected' | 'className'>
1212
export const Selection: React.FC<React.PropsWithChildren<SelectionProps>> = ({selected, className}) => {
1313
const {selectionVariant: listSelectionVariant, role: listRole} = React.useContext(ListContext)
1414
const {selectionVariant: groupSelectionVariant} = React.useContext(GroupContext)

0 commit comments

Comments
 (0)