您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

12 行
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. }