import React from 'react' import { Button } from './button' import { Row } from './layout/row' export function YesNoSelector(props: { selected: 'yes' | 'no' onSelect: (selected: 'yes' | 'no') => void yesLabel?: string noLabel?: string className?: string }) { const { selected, onSelect, yesLabel, noLabel, className } = props return ( ) }