Skip to content
Snippets Groups Projects
Select Git revision
  • 1d28afe45cd2cf64e48597ace957d9057228b7c1
  • master default protected
  • maj-readme
  • update-budget-msg-2022
  • share-with-metadata
  • explications-resultats-macros-PLF2022
  • plf_fix
  • benoit-cty-master-patch-87290
  • activate-plf-2021
  • stats
  • switch-plf
  • carto
  • adapt-matomo
  • js-to-ts
  • nbre-part-logic
  • add-nbre-part
  • 1.0.0
17 results

Legende.tsx

Blame
  • user avatar
    Loïc Poullain authored
    1d28afe4
    History
    Legende.tsx 649 B
    import styles from "./Legende.module.scss";
    
    export function Legende({ montrerPLF }: { montrerPLF: boolean }) {
      return (
        <div>
          <div className={styles.legend}>
            Légende :
          </div>
          <div>
            <span className={styles.initial}>Droit existant</span>
            {montrerPLF && (
              <span className={styles.plf}>
                {/* <a href="http://www.assemblee-nationale.fr/15/projets/pl2272.asp"> */}
                  PLF
                {/* <OpenInNewIcon className={styles.icon} />
                </a> */}
              </span>
            )}
            <span className={styles.reform}>Mon amendement</span>
          </div>
        </div>
      );
    }