import { FC } from 'react'; import styles from './home.module.scss'; export type HomeProps = { /** * Set additional classnames to the icon. */ className?: string; }; /** * Home component. * * Render a home svg icon. */ const Home: FC = ({ className = '' }) => { return ( ); }; export default Home; maryrefslogtreecommitdiffstats
path: root/public/prism/prism-t4-templating.js
blob: dc8a412af92fb5bf296e40efa2bfe0a7747b1b20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49