0.38.0 • Published 1 year ago

@amsterdam/asc-assets v0.38.0

Weekly downloads
1,289
License
MPL-2.0
Repository
github
Last release
1 year ago

asc-assets

This is a standalone package that contains:

  • Fonts (including CSS font-face definitions)
  • Icons (SVGs as React components)

Install

Add this package to your project by running:

npm install @amsterdam/asc-assets

Basic Usage

Icons

import { IconName } from '@amsterdam/asc-assets'

return <IconName />

Fonts

There are currently two ways of including the fonts used in your application, you can either copy them in from this package in your build or include a version from the Amsterdam CDN. Note that if you want to use the version hosted by Amsterdam you must have an application that runs in the amsterdam.nl domain space.

Using the Amsterdam CDN

Add the following code to your index.html file:

<link href="https://static.amsterdam.nl/fonts/fonts.css" rel="stylesheet" />

There is nothing more to do, the fonts should now be available in your application.

Copying the files at build time

This step assumes that you are using WebPack, but it should be possible to do this with other tools or a simple shell script as well.

Add the following code to your WebPack configuration:

new CopyWebpackPlugin({
  patterns: [
    {
      from: './node_modules/@amsterdam/asc-assets/static/fonts',
      to: 'fonts',
    },
  ],
})

And make sure to import the CSS file in your stylesheet:

@import '~@amsterdam/asc-assets/static/fonts/fonts.css';

Build Project

npm run build # generates JSX components using the optimized SVG icons
0.38.0

1 year ago

0.37.0

2 years ago

0.35.4

2 years ago

0.36.0

2 years ago

0.35.3

2 years ago

1.0.0-alpha.0

2 years ago

1.0.0-beta.0

2 years ago

0.35.0

2 years ago

0.34.0

2 years ago

0.33.1-alpha.45

2 years ago

0.33.0

3 years ago

0.32.0

3 years ago

0.31.0

3 years ago

0.30.1-alpha.20

3 years ago

0.30.0

3 years ago

0.29.4-alpha.18

3 years ago

0.29.4-alpha.21

3 years ago

0.29.3-alpha.43

3 years ago

0.29.3

3 years ago

0.29.1-alpha.1

3 years ago

0.29.2-alpha.0

3 years ago

0.29.0

3 years ago

0.29.2

3 years ago

0.29.1

3 years ago

0.27.1-alpha.60

3 years ago

0.28.0

3 years ago

0.27.0

3 years ago

0.27.1-alpha.0

3 years ago

0.26.3-alpha.0

3 years ago

0.26.2

3 years ago

0.26.2-alpha.0

3 years ago

0.26.1

3 years ago

0.26.0

3 years ago

0.25.2

4 years ago

0.25.1

4 years ago

0.25.0

4 years ago

0.24.5-alpha.5

4 years ago