export const ItemRadioWithIcon = () => {
const [value, setValue] = useState<string>();
return (
<ListItem
title="Titre"
description="Description"
IconProps={{ name: 'Settings' }}
RadioProps={{
value: 'tutu',
checked: value === 'tutu',
onChange: v => setValue(v),
}}
/>
);
};