From 124facf9bf2840c8f174ce97c98fef37296a6bd6 Mon Sep 17 00:00:00 2001 From: Mikyo King Date: Tue, 14 May 2024 18:21:15 -0600 Subject: [PATCH] fix: database icon (#209) * fix: database icon * v1.3.3 --- package.json | 2 +- src/icon/Icons.tsx | 30 ++++++++++++++++++++++-------- src/textfield/TextFieldBase.tsx | 2 +- 3 files changed, 24 insertions(+), 10 deletions(-) diff --git a/package.json b/package.json index 070807ff..00c2cb83 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "version": "1.3.2", + "version": "1.3.3", "license": "MIT", "main": "dist/index.js", "typings": "dist/index.d.ts", diff --git a/src/icon/Icons.tsx b/src/icon/Icons.tsx index ec3bccea..cd8186d5 100644 --- a/src/icon/Icons.tsx +++ b/src/icon/Icons.tsx @@ -826,19 +826,33 @@ export const CloudUpload = () => ( //D export const DatabaseOutline = () => ( - - - + + + ); diff --git a/src/textfield/TextFieldBase.tsx b/src/textfield/TextFieldBase.tsx index 469f0d00..d336d91c 100644 --- a/src/textfield/TextFieldBase.tsx +++ b/src/textfield/TextFieldBase.tsx @@ -153,7 +153,7 @@ const textFieldBaseCSS = (styleProps: StyleProps) => css` textarea { resize: none; - overflow-y: scroll; + overflow-y: auto; } }