···2020 lg: 24,
2121 xl: 28,
2222 '2xl': 32,
2323+ '3xl': 48,
2324} as const
24252526export function useCommonSVGProps(props: Props) {
+12
src/lib/strings/errors.ts
···5252 const str = String(e)
5353 return str.includes('Bad token scope') || str.includes('Bad token method')
5454}
5555+5656+/**
5757+ * Intended to capture "User cancelled" or "Crop cancelled" errors
5858+ * that we often get from expo modules such expo-image-crop-tool
5959+ *
6060+ * The exact name has changed in the past so let's just see if the string
6161+ * contains "cancel"
6262+ */
6363+export function isCancelledError(e: unknown) {
6464+ const str = String(e).toLowerCase()
6565+ return str.includes('cancel')
6666+}