aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/organisms/layout/overview.tsx
Commit message (Expand)AuthorAgeFilesLines
* refactor(components): replace Meta component with MetaListArmand Philippot2023-11-111-19/+5
* refactor(components): replace ResponsiveImage with Figure componentArmand Philippot2023-11-111-8/+9
* refactor(components): rewrite DescriptionList componentArmand Philippot2023-11-111-4/+2
* refactor: use named export for everything except pagesArmand Philippot2023-09-201-7/+11
* refactor(build): replace paths aliases with relative pathsArmand Philippot2023-09-191-3/+3
* chore: make Links and Images compliant with Next.js 13Armand Philippot2023-01-231-7/+1
* chore: update images stylesArmand Philippot2022-05-201-1/+1
* chore: fix minor styles/typescript issues introduced during refactoringArmand Philippot2022-05-181-1/+0
* refactor: rewrite DescriptionList and Meta componentsArmand Philippot2022-05-091-6/+35
* refactor: support React 18Armand Philippot2022-04-161-2/+2
* chore: add an Overview componentArmand Philippot2022-04-151-0/+33
iteral.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
import styles from './Home.module.scss';

const HomeIcon = () => {
  return (
    <svg
      viewBox="0 0 100 100"
      xmlns="http://www.w3.org/2000/svg"
      className={styles.icon}
    >
      <path
        className={styles.wall}
        d="M 9.2669392,15.413749 H 90.709833 V 97.751815 H 9.2669392 Z"
      />
      <path
        className={styles.indoor}
        d="m 39.190941,65.836418 h 21.594871 v 31.91539 H 39.190941 Z"
      />
      <path
        className={styles.door}
        d="m 39.190941,65.836418 h 21.594871 v 31.91539 H 39.190941 Z"
      />
      <path
        className={styles.roof}
        d="M 4.8219096,11.719266 H 94.720716 l 3.47304,33.365604 H 1.7830046 Z"
      />
      <path
        className={styles.chimney}
        d="M 70.41848,2.2481852 H 82.957212 V 22.636212 H 70.41848 Z"
      />
      <path
        className={styles.lines}
        d="M 3.9536645,19.342648 H 61.003053 v 3.293563 H 3.9536645 Z"
      />
      <path
        className={styles.lines}
        d="m 38.973709,32.057171 h 57.049389 v 3.293563 H 38.973709 Z"
      />
    </svg>
  );
};

export default HomeIcon;