0.17.4 • Published 9 days ago

@material-symbols/svg-300 v0.17.4

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
9 days ago

@material-symbols/svg-300

Latest optimized SVGs with weight 300 for Material Symbols.

This package is automatically updated, so it will always have the latest icons from Google.

For variable icon fonts, see @material-symbols/font-300

Installation

Install the latest version using:

npm install @material-symbols/svg-300@latest

The package @material-symbols/svg-300 includes only SVGs with weight 300. To use a different weight, replace 300 in the package name with the desired weight.

PackageWeight
@material-symbols/svg-100100
@material-symbols/svg-200200
@material-symbols/svg-300300
@material-symbols/svg-400400
@material-symbols/svg-500500
@material-symbols/svg-600600
@material-symbols/svg-700700

Usage

Material Symbols are available in three stylesoutlined, rounded, and sharp. SVGs are available for both unfilled (FILL 0) and filled (FILL 1) states with grade (GRAD) 0 and size (opsz) 48px. Other variations of grade and size are not included to keep the package size small. SVGs for each icon are located in the corresponding style directory:

@material-symbols/svg-300/{style}/{icon}.svg      /* Fill 0 */
@material-symbols/svg-300/{style}/{icon}-fill.svg /* Fill 1 */

For example, SVGs for face icon are located at:

@material-symbols/svg-300/outlined/face.svg      /* Fill 0 */
@material-symbols/svg-300/outlined/face-fill.svg /* Fill 1 */
@material-symbols/svg-300/rounded/face.svg       /* Fill 0 */
@material-symbols/svg-300/rounded/face-fill.svg  /* Fill 1 */
@material-symbols/svg-300/sharp/face.svg         /* Fill 0 */
@material-symbols/svg-300/sharp/face-fill.svg    /* Fill 1 */

React

You can use @svgr/webpack to import SVGs as React components:

import Face from '@material-symbols/svg-300/outlined/face.svg';

// Face is a React component that renders the SVG

function App() {
  return (
    <div className="App">
      <Face />
    </div>
  );
}

If you are using @svgr/webpack with file-loader (example: Create React App), use:

import { ReactComponent as Face } from '@material-symbols/svg-300/outlined/face.svg';

Vue

You can use @svgv/webpack to import SVGs as Vue components:

<template>
  <div class="App">
    <Face />
  </div>
</template>

<script>
import Face from '@material-symbols/svg-300/outlined/face.svg';

// Face is a Vue component that renders the SVG

export default {
  components: {
    Face,
  },
};
</script>

Styling

SVGs can be styled using CSS. Setting width and height to 1em allows changing size via font-size. Setting fill to currentColor allows changing color via color.

.App svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

Available Icons

See demo.

License

Material Symbols are created by Google.

We have made these icons available for you to incorporate into your products under the Apache License Version 2.0. Feel free to remix and re-share these icons and documentation in your products. We'd love attribution in your app's about screen, but it's not required.

0.17.4

9 days ago

0.17.3

13 days ago

0.17.2

29 days ago

0.17.1

2 months ago

0.17.0

2 months ago

0.16.0

2 months ago

0.15.0

3 months ago

0.14.7

3 months ago

0.14.6

4 months ago

0.14.5

4 months ago

0.14.4

4 months ago

0.14.3

5 months ago

0.14.2

5 months ago

0.11.0

9 months ago

0.13.0

8 months ago

0.13.1

7 months ago

0.13.2

7 months ago

0.9.0

10 months ago

0.10.1

10 months ago

0.12.0

8 months ago

0.10.2

10 months ago

0.10.3

9 months ago

0.14.0

6 months ago

0.10.4

9 months ago

0.14.1

6 months ago

0.10.0

10 months ago

0.8.1

11 months ago

0.8.0

11 months ago

0.7.0

11 months ago

0.6.0

11 months ago

0.5.4

1 year ago

0.5.3

1 year ago

0.5.5

1 year ago

0.4.6

1 year ago

0.5.0

1 year ago

0.5.2

1 year ago

0.5.1

1 year ago

0.4.5

1 year ago

0.4.4

1 year ago

0.4.3

1 year ago

0.3.0

1 year ago

0.4.1

1 year ago

0.4.0

1 year ago

0.4.2

1 year ago

0.2.15

2 years ago

0.2.14

2 years ago

0.2.13

2 years ago

0.2.12

2 years ago

0.2.11

2 years ago

0.2.10

2 years ago

0.2.9

2 years ago

0.2.1

2 years ago

0.2.7

2 years ago

0.2.6

2 years ago

0.2.8

2 years ago

0.2.3

2 years ago

0.2.2

2 years ago

0.2.5

2 years ago

0.2.4

2 years ago

0.2.0

2 years ago

0.1.0

2 years ago