Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

16 строки
380 B

  1. import './skip-button.scss';
  2. import {createButton} from "../button/ButtonComponent";
  3. export const createSkipButton = () => {
  4. let skipBtn = createButton({
  5. color: 'secondary',
  6. link: '#main',
  7. label: 'Zum Hauptinhalt springen',
  8. iconPosition: 'icon-right',
  9. icon: 'ankerlink-right'});
  10. skipBtn.classList.add('skip-btn');
  11. return skipBtn;
  12. };