diff options
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/Icons.tsx | 15 | ||||
-rw-r--r-- | src/components/PluginSettings/PluginModal.tsx | 2 |
2 files changed, 16 insertions, 1 deletions
diff --git a/src/components/Icons.tsx b/src/components/Icons.tsx index 2aea67c..26364fc 100644 --- a/src/components/Icons.tsx +++ b/src/components/Icons.tsx @@ -221,3 +221,18 @@ export function CogWheel(props: IconProps) { </Icon> ); } + +export function ReplyIcon(props: IconProps) { + return ( + <Icon + {...props} + className={classes(props.className, "vc-reply-icon")} + viewBox="0 0 24 24" + > + <path + fill="currentColor" + d="M10 8.26667V4L3 11.4667L10 18.9333V14.56C15 14.56 18.5 16.2667 21 20C20 14.6667 17 9.33333 10 8.26667Z" + /> + </Icon> + ); +} diff --git a/src/components/PluginSettings/PluginModal.tsx b/src/components/PluginSettings/PluginModal.tsx index 78f3c9d..d8b9490 100644 --- a/src/components/PluginSettings/PluginModal.tsx +++ b/src/components/PluginSettings/PluginModal.tsx @@ -238,7 +238,7 @@ export default function PluginModal({ plugin, onRestartNeeded, onClose, transiti <Button onClick={onClose} size={Button.Sizes.SMALL} - color={Button.Colors.WHITE} + color={Button.Colors.PRIMARY} look={Button.Looks.LINK} > Cancel |