From 1a01b1ddc8f4264afebdbc331d09f74e46e18f6c Mon Sep 17 00:00:00 2001 From: lingdocs <71590811+lingdocs@users.noreply.github.com> Date: Tue, 5 Apr 2022 00:22:47 +0500 Subject: [PATCH] try updating button-select --- package.json | 2 +- src/components/ButtonSelect.tsx | 50 +++++++++++++++------------------ 2 files changed, 24 insertions(+), 28 deletions(-) diff --git a/package.json b/package.json index 82d4e94..e6f30d3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@lingdocs/pashto-inflector", - "version": "1.6.8", + "version": "1.6.9", "author": "lingdocs.com", "description": "A Pashto inflection and verb conjugation engine, inculding React components for displaying Pashto text, inflections, and conjugations", "homepage": "https://verbs.lingdocs.com", diff --git a/src/components/ButtonSelect.tsx b/src/components/ButtonSelect.tsx index e4a9eaf..16132bc 100644 --- a/src/components/ButtonSelect.tsx +++ b/src/components/ButtonSelect.tsx @@ -17,33 +17,29 @@ type PickerProps = { } function ButtonSelect(props: PickerProps) { - return ( -
-
- {props.options.map((option) => ( - - ))} -
-
- ); + return
+ {props.options.map((option) => ( + + ))} +
} export default ButtonSelect;