({ metadata }: InstallProps)
| 34 | }; |
| 35 | |
| 36 | const Static = ({ metadata }: InstallProps) => { |
| 37 | return ( |
| 38 | <> |
| 39 | <Title order={3} mt="xl" mb="md"> |
| 40 | Installation |
| 41 | </Title> |
| 42 | <Text> |
| 43 | Install the static version of this font by running the following |
| 44 | command: |
| 45 | </Text> |
| 46 | <PackageManagerCode cmd={`@fontsource/${metadata.id}`} /> |
| 47 | <InstallCode metadata={metadata} /> |
| 48 | </> |
| 49 | ); |
| 50 | }; |
| 51 | |
| 52 | export const Install = ({ |
| 53 | metadata, |
nothing calls this directly
no outgoing calls
no test coverage detected