From e5e21e7a290494f0bd33c4c45b5b4bab6a1bdef1 Mon Sep 17 00:00:00 2001 From: Bartosz Kaszubowski Date: Wed, 18 Mar 2026 21:02:42 +0100 Subject: [PATCH] fix keybinds, caution icon and dependency row appearance, add libs --- components/Icons/index.tsx | 3 +- components/InputKeyHint.tsx | 9 +++-- components/Package/DependencyRow.tsx | 6 ++-- react-native-libraries.json | 51 ++++++++++++++++++++++++++++ styles/styles.css | 13 ++++--- 5 files changed, 70 insertions(+), 12 deletions(-) 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 ( -