import React from '../../../lib/teact/teact'; interface OwnProps { isOwn?: boolean; } function MessageAppendix({ isOwn } : OwnProps) { const path = isOwn ? 'M6 17H0V0c.193 2.84.876 5.767 2.05 8.782.904 2.325 2.446 4.485 4.625 6.48A1 1 0 016 17z' : 'M3 17h6V0c-.193 2.84-.876 5.767-2.05 8.782-.904 2.325-2.446 4.485-4.625 6.48A1 1 0 003 17z'; return ( ); } export default MessageAppendix;