npm install --save-dev @gravity-ui/illustrations
Укажите значение для CSS-токена --gil-color-underlay
в приложении:
--gil-color-underlay: rgba(240, 243, 245, 1);
В качестве альтернативы можно использовать SCSS-миксины:
@import '@gravity-ui/illustrations/styles/theme.scss';
.g-root {
&_theme_light {
@include g-illustrations-colors-light;
}
&_theme_dark {
@include g-illustrations-colors-dark;
}
}
import NotFound from '@gravity-ui/illustrations/NotFound';
или
import {NotFound} from '@gravity-ui/illustrations';
Для работы с SVG-форматом может потребоваться соответствующий загрузчик.
import notFound from '@gravity-ui/illustrations/svgs/not-found-light.svg';