({ metadata, variable }: InstallProps)
| 18 | } |
| 19 | |
| 20 | const Variable = ({ metadata, variable }: InstallProps) => { |
| 21 | return ( |
| 22 | <> |
| 23 | <Title order={3} mt="xl" mb="md"> |
| 24 | Installation |
| 25 | </Title> |
| 26 | <Text> |
| 27 | Install the variable version of this font by running the following |
| 28 | command: |
| 29 | </Text> |
| 30 | <PackageManagerCode cmd={`@fontsource-variable/${metadata.id}`} /> |
| 31 | <InstallCode metadata={metadata} variable={variable} /> |
| 32 | </> |
| 33 | ); |
| 34 | }; |
| 35 | |
| 36 | const Static = ({ metadata }: InstallProps) => { |
| 37 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected