UNPKG

@janiscommerce/ui-native

Version:
12 lines (11 loc) 336 B
import React from 'react'; export interface ItemSelectionButtonProps { name: string; selected?: boolean; radioButton?: boolean; leftSelection?: boolean; rightSelection?: boolean; onSelection?: () => {}; } declare const ItemSelectionButton: React.FC<ItemSelectionButtonProps>; export default ItemSelectionButton;