-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathInter.php
More file actions
33 lines (26 loc) · 620 Bytes
/
Inter.php
File metadata and controls
33 lines (26 loc) · 620 Bytes
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
<?php
namespace SimonHamp\TheOg\Theme\Fonts;
use SimonHamp\TheOg\Theme\AbstractFont;
class Inter extends AbstractFont
{
public static function regular(): self
{
return new self('Regular');
}
public static function black(): self
{
return new self('Black');
}
public static function bold(): self
{
return new self('Bold');
}
public static function light(): self
{
return new self('Light');
}
public function path(): string
{
return __DIR__ . "/../../../resources/fonts/Inter/static/Inter-{$this->variant}.ttf";
}
}