import React from 'react'; import { Flex } from '../../../Layout'; import { Text } from '../../../Text'; export const MwebChatOption = ({ icon, text, onClick, color = '$on_surface_high', }: { icon: React.ReactNode; text: string; onClick: () => void | Promise; color?: string; }) => { return ( {icon} {text} ); };