mirror of
https://github.com/fergalmoran/turnstone.git
synced 2025-12-22 09:49:56 +00:00
Add input className
This commit is contained in:
@@ -219,7 +219,7 @@ export default function Container(props) {
|
||||
<input
|
||||
id={id}
|
||||
name={name}
|
||||
className={customStyles.query}
|
||||
className={`${customStyles.input || ''} ${customStyles.query || ''}`.trim()}
|
||||
style={defaultStyles.query}
|
||||
disabled={disabled}
|
||||
placeholder={placeholder}
|
||||
@@ -240,7 +240,7 @@ export default function Container(props) {
|
||||
|
||||
{typeahead && (
|
||||
<input
|
||||
className={customStyles.typeahead}
|
||||
className={`${customStyles.input || ''} ${customStyles.typeahead || ''}`.trim()}
|
||||
style={defaultStyles.typeahead}
|
||||
disabled={disabled}
|
||||
type='text'
|
||||
|
||||
Reference in New Issue
Block a user