feat(ui): style copy button on ToastWithSessionRefDescription

This commit is contained in:
psychedelicious 2024-05-22 05:52:49 +10:00
parent 2e5d24f272
commit 29e1ea59fc

View File

@ -20,8 +20,11 @@ export default function ToastWithSessionRefDescription({ message, sessionId }: P
icon={<PiCopyBold />}
onClick={onCopy.bind(null, sessionId)}
variant="ghost"
sx={sx}
/>
</Flex>
</Flex>
);
}
const sx = { svg: { fill: 'base.50' } };