Skip to content

Commit

Permalink
* search-box: support to override class to searchbox.
Browse files Browse the repository at this point in the history
  • Loading branch information
catouse committed Mar 24, 2024
1 parent 296d402 commit 511d1a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/search-box/src/components/search-box.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ export class SearchBox extends Component<SearchBoxOptions, SearchBoxState> {
ref={this._input}
id={id}
type="text"
class={classes('form-control', className, {'rounded-full': circle, 'size-sm': compact})}
class={classes('form-control', {'rounded-full': circle, 'size-sm': compact}, className)}
style={style}
placeholder={placeholder}
disabled={disabled}
Expand Down

0 comments on commit 511d1a7

Please sign in to comment.