(Prism.languages.turtle = { comment: { pattern: /#.*/, greedy: !0 }, 'multiline-string': { pattern: /"""(?:(?:""?)?(?:[^"\\]|\\.))*"""|'''(?:(?:''?)?(?:[^'\\]|\\.))*'''/, greedy: !0, alias: 'string', inside: { comment: /#.*/ }, }, string: { pattern: /"(?:[^\\"\r\n]|\\.)*"|'(?:[^\\'\r\n]|\\.)*'/, greedy: !0, }, url: { pattern: /<(?:[^\x00-\x20<>"{}|^`\\]|\\(?:u[\da-fA-F]{4}|U[\da-fA-F]{8}))*>/, greedy: !0, inside: { punctuation: /[<>]/ }, }, function: { pattern: /(?:(?![-.\d\xB7])[-.\w\xB7\xC0-\uFFFD]+)?:(?:(?![-.])(?:[-.:\w\xC0-\uFFFD]|%[\da-f]{2}|\\.)+)?/i, inside: { 'local-name': { pattern: /([^:]*:)[\s\S]+/, lookbehind: !0 }, prefix: { pattern: /[\s\S]+/, inside: { punctuation: /:/ } }, }, }, number: /[+-]?\b\d+(?:\.\d*)?(?:e[+-]?\d+)?/i, punctuation: /[{}.,;()[\]]|\^\^/, boolean: /\b(?:false|true)\b/, keyword: [/(?:\ba|@prefix|@base)\b|=/, /\b(?:base|graph|prefix)\b/i], tag: { pattern: /@[a-z]+(?:-[a-z\d]+)*/i, inside: { punctuation: /@/ } }, }), (Prism.languages.trig = Prism.languages.turtle); /option> The frontend of my personal website.Armand Philippot
aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Icons/Hamburger/Hamburger.tsx
blob: 9b39272bce6deed2d3e81e0b23c16fac077fb2ed (plain)
1
2
3
4
5
6
7
8
9
10
import styles from './Hamburger.module.scss';

const HamburgerIcon = ({ isActive }: { isActive: boolean }) => {
  const withModifier = isActive ? ` ${styles['icon--active']}` : '';
  const iconClasses = `${styles.icon} ${withModifier}`;

  return <span className={iconClasses}></span>;
};

export default HamburgerIcon;