From af5e35ab7d0efac43c425baf7d7657dd9004835c Mon Sep 17 00:00:00 2001 From: Parker Stafford <52351508+Parker-Stafford@users.noreply.github.com> Date: Fri, 18 Oct 2024 14:48:01 -0700 Subject: [PATCH] feat: add message and message filled icons (#246) --- src/icon/Icons.tsx | 28 ++++++++++++++++++++++++---- 1 file changed, 24 insertions(+), 4 deletions(-) diff --git a/src/icon/Icons.tsx b/src/icon/Icons.tsx index 0a734f2f..55b40a21 100644 --- a/src/icon/Icons.tsx +++ b/src/icon/Icons.tsx @@ -2169,7 +2169,27 @@ export const MinusOutline = () => ( ); -//W -//X -//Y -//Z +export const MessageSquareOutline = () => ( + + + + + + + + + + + +); + +export const MessageSquareFilled = () => ( + + + + + + + + +);