diff --git a/components/Icons/index.tsx b/components/Icons/index.tsx index 61ef3431..81ea930c 100644 --- a/components/Icons/index.tsx +++ b/components/Icons/index.tsx @@ -1107,6 +1107,7 @@ export function CautionBlockquote({ width = 24, height = 24, style }: IconProps) x2="128" y2="80" fill="none" + stroke="currentColor" strokeLinecap="round" strokeLinejoin="round" strokeWidth="24" @@ -1118,7 +1119,7 @@ export function CautionBlockquote({ width = 24, height = 24, style }: IconProps) strokeMiterlimit="10" strokeWidth="24" /> - + ); } diff --git a/components/InputKeyHint.tsx b/components/InputKeyHint.tsx index e4cac030..f2c249c5 100644 --- a/components/InputKeyHint.tsx +++ b/components/InputKeyHint.tsx @@ -8,20 +8,19 @@ type Props = { }[]; }; -export const focusHintLabel = tw`font-light text-palette-gray4`; -export const focusHintKey = tw`min-w-6 rounded-[3px] bg-palette-gray5 px-1 py-[3px] text-center tracking-[0.75px] text-tertiary dark:bg-powder`; - export default function InputKeyHint({ content }: Props) { return content.map(entry => { if ('key' in entry) { return ( -