You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

12 lines
316 B

  1. import './search-button.scss';
  2. import {createElement} from "../../_global/scripts/helpers";
  3. export const createSearchButton = ({
  4. btnClass = 'primary',
  5. }) => {
  6. const button = createElement('button', ['search-submit', btnClass]);
  7. button.type = 'submit';
  8. button.ariaLabel = 'Suche starten';
  9. return button;
  10. }