# [@material-design-icons/svg](https://github.com/marella/material-design-icons/tree/main/svg) Latest optimized SVGs for material design icons. > This package is automatically updated, so it will always have the latest icons from Google. > For Material Symbols, see [`material-symbols`](https://www.npmjs.com/package/material-symbols) > > For icon fonts, see [`@material-design-icons/font`](https://www.npmjs.com/package/@material-design-icons/font) - [Installation](#installation) - [Usage](#usage) - [Available Icons](#available-icons) ## Installation Install the [latest version][releases] using: ```sh npm install @material-design-icons/svg@latest ``` ## Usage Material icons are available in five styles—`filled`, `outlined`, `round`, `sharp` and `two-tone`. SVGs for each icon are located in the corresponding style directory: ```js @material-design-icons/svg/{style}/{icon}.svg ``` For example, SVGs for `face` icon are located at: ```js @material-design-icons/svg/filled/face.svg @material-design-icons/svg/outlined/face.svg @material-design-icons/svg/round/face.svg @material-design-icons/svg/sharp/face.svg @material-design-icons/svg/two-tone/face.svg ``` ### React You can use [`@svgr/webpack`](https://www.npmjs.com/package/@svgr/webpack) to import SVGs as React components: ```js import Face from '@material-design-icons/svg/filled/face.svg'; // Face is a React component that renders the SVG function App() { return (