-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFixieExample.jsx
More file actions
77 lines (69 loc) · 3.25 KB
/
FixieExample.jsx
File metadata and controls
77 lines (69 loc) · 3.25 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
import React from 'react';
import Fixie from './Fixie';
import './fixie.css';
/**
* Example usage of the Fixie React component
*/
const FixieExample = () => {
return (
<div>
<Fixie columns={70}>
{` _______ _______ _______ _______ _______ _______ _______ _______
|\\ /|\\ /|\\ /|\\ /|\\ /|\\ /|\\ /|\\ /|
| +---+ | +---+ | +---+ | +---+ | +---+ | +---+ | +---+ | +---+ |
| | | | | | | | | | | | | | | | | | | | | | | | |
| | f | | | i | | | x | | | i | | | e | | | . | | | j | | | s | |
| +---+ | +---+ | +---+ | +---+ | +---+ | +---+ | +---+ | +---+ |
|/_____\\|/_____\\|/_____\\|/_____\\|/_____\\|/_____\\|/_____\\|/_____\\|
`}
</Fixie>
<Fixie columns={35}>
{`fixie.js: Like FitText or BigText,
but for fixed-width fonts.`}
</Fixie>
<Fixie columns={150}>
{`
,/
//
,//
___ /| |//
\`__/\\_ --(/|___/-/
\\|\\_-\\___ __-_\`- /-/ \\.
|\\_-___,-\\_____--/_)' ) \\
\\ -_ / __ \\( \`( __\`\\|
\`\\__| |\\)\\ ) /(/|
,._____., ',--//-| \\ | ' /
/ __. \\, / /,---| \\ /
/ / _. \\ \\ \`/\`_/ _,' | |
| | ( ( \\ | ,/\\'__/'/ | |
| \\ \\\`--, \`_/_------______/ \\( )/
| | \\ \\_. \\, \\___/\\
| | \\_ \\ \\ \\
\\ \\ \\_ \\ \\ / \\
\\ \\ \\._ \\__ \\_| | \\
\\ \\___ \\ \\ | \\
\\__ \\__ \\ \\_ | \\ |
| \\_____ \\ ____ | |
| \\ \\__ ---' .__\\ | | |
\\ \\__ --- / ) | \\ /
\\ \\____/ / ()( \\ \`---_ /|
\\__________/(,--__ \\_________. | ./ |
| \\ \\ \`---_\\--, \\ \\_,./ |
| \\ \\_ \` \\ /\`---_______-\\ \\\\ /
\\ \\.___,\`| / \\ \\\\ \\
\\ | \\_ \\| \\ ( |: |
\\ \\ \\ | / / | ;
\\ \\ \\ \\ ( \`_' \\ |
\\. \\ \\. \\ \`__/ | | Valkyrie
\\ \\ \\. \\ | |
\\ \\ \\ \\ ( )
\\ | \\ | | |
| \\ \\ \\ I \`
( __; ( _; ('-_';
|___\\ \\___: \\___:
`}
</Fixie>
</div>
);
};
export default FixieExample;