feat: style dropdown arrow of html and list select.

This commit is contained in:
Ahmed Bouhuolia
2020-05-11 23:19:47 +02:00
parent 9168a1b069
commit e56a50c3ff
4 changed files with 47 additions and 6 deletions

View File

@@ -3,12 +3,11 @@ import {Button} from '@blueprintjs/core';
import {Select} from '@blueprintjs/select';
export default function SelectList(props) {
const {buttonLabel, ...rest} = props;
const { buttonLabel, ...rest } = props;
return (
<Select {...rest}>
<Button
rightIcon="caret-down"
fill={true}>
{ buttonLabel }
</Button>