Иконки
Руководство и рекомендации по использованию иконок в Material-UI.
Material-UI обеспечивает поддержку иконок тремя способами:
- Стандартные иконки Material Design экспортированы как React компоненты (SVG иконки).
- С помощью компонента SvgIcon, React-обёртки для пользовательских SVG иконок.
- С помощью компонента Icon, React-обёртки для пользовательских иконочных шрифтов.
Material Иконки
Material Design стандартизировал более 1100 официальных иконок, каждую в пяти различных "темах" (см. ниже). Для каждой иконки SVG мы экспортируем соответствующий компонент React из пакета @material-ui/icons. Вы можете найти полный список этих иконок здесь.
Инструкция по установке
Установите пакет в каталог проекта командой:
// через npm
npm install @material-ui/icons
// через yarn
yarn add @material-ui/icons
Эти компоненты используют компонент Material-UI SvgIcon для отрисовки пути SVG для каждой иконки, и поэтому у них есть peer-зависимость от следующего выпуска Material-UI.
Если вы еще не используете Material-UI в вашем проекте, вы можете добавить его командой:
// with npm
npm install @material-ui/core
// with yarn
yarn add @material-ui/core
Использование
Импорт иконок с помощью одного из этих двух вариантов:
Вариант 1:
import AccessAlarmIcon from '@material-ui/icons/AccessAlarm'; import ThreeDRotation from '@material-ui/icons/ThreeDRotation';
Вариант 2:
import { AccessAlarm, ThreeDRotation } from '@material-ui/icons';
The safest is Option 1 but Option 2 can yield the best developer experience. Make sure you follow the minimizing bundle size guide before using the second approach. The configuration of a Babel plugin is encouraged.
Each icon also has a "theme": Filled (default), Outlined, Rounded, Two tone and Sharp. If you want to import the icon component with a theme other than default, append the theme name to the icon name. For example @material-ui/icons/Delete
icon with:
- Filled theme (default) is exported as
@material-ui/icons/Delete
, - Outlined theme is exported as
@material-ui/icons/DeleteOutlined
, - Rounded theme is exported as
@material-ui/icons/DeleteRounded
, - Twotone theme is exported as
@material-ui/icons/DeleteTwoTone
, - Sharp theme is exported as
@material-ui/icons/DeleteSharp
.
Note: The Material Design specification names the icons using "snake_case" naming (for example
delete_forever
,add_a_photo
), while@material-ui/icons
exports the respective icons using "PascalCase" naming (for exampleDeleteForever
,AddAPhoto
). There are three exceptions to this naming rule:3d_rotation
exported asThreeDRotation
,4k
exported asFourK
, and360
exported asThreeSixty
.
Filled
Outlined
Rounded
Two Tone
Sharp
Edge-cases
SvgIcon
If you need a custom SVG icon (not available in the Material Icons default set) you can use the SvgIcon
wrapper. This component extends the native <svg>
element:
- It comes with built-in accessibility.
- SVG elements should be scaled for a 24x24px viewport, so the resulting icon can be used as is, or included as a child for other Material-UI components that use icons. (This can be customized with the
viewBox
attribute). - By default, the component inherits the current color. Optionally, you can apply one of the theme colors using the
color
prop.
function HomeIcon(props) {
return (
<SvgIcon {...props}>
<path d="M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z" />
</SvgIcon>
);
}
Цвет
<HomeIcon />
<HomeIcon color="primary" />
<HomeIcon color="secondary" />
<HomeIcon color="action" />
<HomeIcon color="disabled" />
<HomeIcon style={{ color: green[500] }} />
<HomeIcon fontSize="small" />
<HomeIcon />
<HomeIcon fontSize="large" />
<HomeIcon style={{ fontSize: 40 }} />
Component prop
You can use the SvgIcon
wrapper even if your icons are saved in the .svg
format. svgr has loaders to import SVG files and use them as React components. For example, with webpack:
// webpack.config.js
{
test: /\.svg$/,
use: ['@svgr/webpack'],
}
// ---
import StarIcon from './star.svg';
<SvgIcon component={StarIcon} viewBox="0 0 600 476.6" />
It's also possible to use it with "url-loader" or "file-loader". It's the approach used by Create React App.
// webpack.config.js
{
test: /\.svg$/,
use: ['@svgr/webpack', 'url-loader'],
}
// ---
import { ReactComponent as StarIcon } from './star.svg';
<SvgIcon component={StarIcon} viewBox="0 0 600 476.6" />
Libraries
Material Design (recommended)
Material Design имеет более 1,100 стандартизиваных официальных иконок.
MDI
materialdesignicons.com provides over 2,000 icons. For the wanted icon, copy the SVG path
they provide, and use it as the child of the SvgIcon
component.
Note: mdi-material-ui has already wrapped each of these SVG icons with the SvgIcon
component, so you don't have to do it yourself.
Icon (Font icons)
Компонент Icon
отображает иконку из любого иконочного шрифта с поддержкой лигатур. Предварительно необходимо включить в проект шрифт, такой как Material icon font, с помощью, например, Google Web Fonts:
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
Icon
will set the correct class name for the Material icon font. For other fonts, you must supply the class name using the Icon component's className
property.
Чтобы использовать иконку, просто оберните её имя (лигатуру шрифта) в компонент Icon
, например:
import Icon from '@material-ui/core/Icon';
<Icon>star</Icon>
По умолчанию иконка наследует текущий цвет текста. При желании вы можете установить цвет иконки с помощью одного из свойств цвета темы: primary
, secondary
, action
, error
или disabled
.
Шрифтовые иконки Material
<Icon>add_circle</Icon>
<Icon color="primary">add_circle</Icon>
<Icon color="secondary">add_circle</Icon>
<Icon style={{ color: green[500] }}>add_circle</Icon>
<Icon fontSize="small">add_circle</Icon>
<Icon style={{ fontSize: 30 }}>add_circle</Icon>
Font Awesome
Font Awesome можно использовать с компонентом Icon
следующим образом:
<Icon className="fa fa-plus-circle" />
<Icon className="fa fa-plus-circle" color="primary" />
<Icon className="fa fa-plus-circle" color="secondary" />
<Icon className="fa fa-plus-circle" style={{ color: green[500] }} />
<Icon className="fa fa-plus-circle" fontSize="small" />
<Icon className="fa fa-plus-circle" style={{ fontSize: 30 }} />
Font vs SVG. Which approach to use?
Оба подхода работают нормально, однако есть некоторые тонкие различия, особенно с точки зрения производительности и качества отрисовки. Когда это возможно, использование SVG является более предпочтительным, так как в этом случае есть возможность разделения кода, поддерживается больше иконок, отрисовка происходит лучше и быстрее.
For more details, you can check out why GitHub migrated from font icons to SVG icons.
Доступность
Иконки могут передавать всевозможную значимую информацию, поэтому важно, чтобы они охватывали максимально возможное количество людей. There are two use cases you’ll want to consider:
- Decorative Icons are only being used for visual or branding reinforcement. Если удалить их со страницы, пользователи всё равно смогут её использовать, им всё будет понятно.
- Семантические иконки – это те, которые используются для передачи смысла, а не только для украшения. В данную группу входят иконки без текста, используемые в качестве интерактивных элементов управления – кнопки, элементы форм, переключатели, и так далее.
Декоративные SVG-иконки
If your icons are purely decorative, you’re already done! The aria-hidden=true
attribute is added so that your icons are properly accessible (invisible).
Семантические SVG-иконки
Если у вашей иконки есть семантическое значение, необходимо только добавить свойство titleAccess="значение"
. The role="img"
attribute and the <title>
element are added so that your icons are properly accessible.
В случае фокусируемых интерактивных элементов, например, кнопки с иконкой, можно использовать свойство aria-label
:
import IconButton from '@material-ui/core/IconButton';
import SvgIcon from '@material-ui/core/SvgIcon';
// ...
<IconButton aria-label="delete">
<SvgIcon>
<path d="M20 12l-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z" />
</SvgIcon>
</IconButton>
Декоративные шрифтовые иконки
If your icons are purely decorative, you’re already done! The aria-hidden=true
attribute is added so that your icons are properly accessible (invisible).
Семантические шрифтовые иконки
Если у ваших иконок есть семантическое значение, необходимо предоставить текстовую альтернативу, видимую только для вспомогательных технологий.
import Icon from '@material-ui/core/Icon';
import Typography from '@material-ui/core/Typography';
// ...
<Icon>add_circle</Icon>
<Typography variant="srOnly">Создать пользователя</Typography>