fix(icon): change size & color icon svg

This commit is contained in:
zain94rif
2026-01-13 17:04:50 +07:00
parent e8da716e8f
commit c0fe3aaca1

View File

@@ -48,8 +48,14 @@ import {
} from '../../../api/notification'; } from '../../../api/notification';
const { Text, Paragraph, Link: AntdLink } = Typography; const { Text, Paragraph, Link: AntdLink } = Typography;
const openMail = ( const OpenMail = ({ size = 22, color = 'black' }) => (
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 640"> <svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 640 640"
width={size}
height={size}
fill={color}
>
<path d="M576 480C576 515.3 547.5 544 512.1 544L128 544C92.6 544 64 515.3 64 480L64 228C64.1 212.5 71.8 198 84.5 189.2L270 61.3C300.1 40.6 339.8 40.6 369.9 61.3L555.5 189.2C568.3 198 575.9 212.5 576 228L576 480zM128 496L512.1 496C520.9 496 528 488.9 528 480L528 288.3L373.2 405.7C341.8 429.6 298.3 429.6 266.8 405.7L112 288.3L112 480C112 488.9 119.2 496 128 496zM527.6 228.4L342.7 100.8C329 91.4 311 91.4 297.3 100.8L112.4 228.4L295.8 367.5C310.1 378.3 329.9 378.3 344.2 367.5L527.6 228.4z" /> <path d="M576 480C576 515.3 547.5 544 512.1 544L128 544C92.6 544 64 515.3 64 480L64 228C64.1 212.5 71.8 198 84.5 189.2L270 61.3C300.1 40.6 339.8 40.6 369.9 61.3L555.5 189.2C568.3 198 575.9 212.5 576 228L576 480zM128 496L512.1 496C520.9 496 528 488.9 528 480L528 288.3L373.2 405.7C341.8 429.6 298.3 429.6 266.8 405.7L112 288.3L112 480C112 488.9 119.2 496 128 496zM527.6 228.4L342.7 100.8C329 91.4 311 91.4 297.3 100.8L112.4 228.4L295.8 367.5C310.1 378.3 329.9 378.3 344.2 367.5L527.6 228.4z" />
</svg> </svg>
); );
@@ -411,7 +417,7 @@ const ListNotification = memo(function ListNotification(props) {
}} }}
> >
{notification.type === 'resolved' ? ( {notification.type === 'resolved' ? (
openMail <OpenMail size={28.5} color={color} />
) : ( ) : (
<IconComponent style={{ fontSize: '22px' }} /> <IconComponent style={{ fontSize: '22px' }} />
)} )}