We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb7762b commit 5bd47a4Copy full SHA for 5bd47a4
1 file changed
packages/react/src/ActionList/Selection.tsx
@@ -8,7 +8,7 @@ import classes from './ActionList.module.css'
8
import Radio from '../Radio'
9
import {warning} from '../utils/warning'
10
11
-export type SelectionProps = Pick<ActionListItemProps, 'selected' | 'className'>
+type SelectionProps = Pick<ActionListItemProps, 'selected' | 'className'>
12
export const Selection: React.FC<React.PropsWithChildren<SelectionProps>> = ({selected, className}) => {
13
const {selectionVariant: listSelectionVariant, role: listRole} = React.useContext(ListContext)
14
const {selectionVariant: groupSelectionVariant} = React.useContext(GroupContext)
0 commit comments