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.
 
 
 
 

15 line
495 B

  1. import './teaser-social.scss';
  2. import {createElement} from "../../_global/scripts/helpers";
  3. export const createTeaserSocial = ({
  4. kicker = 'Ihre IHK bei Twitter',
  5. }) => {
  6. const teaser = createElement('div', ['teaser']);
  7. if (kicker && kicker.length > 0) {
  8. createElement('span', ['kicker'], kicker, teaser);
  9. }
  10. const socialBox = createElement('div', ['social-box'], null, teaser);
  11. socialBox.innerHTML = '<iframe src="./html/twitter.html" width="100%"></iframe>';
  12. return teaser;
  13. }