@abdt/icons
v0.0.42
Published
A collection of icons by ABDT
Downloads
129
Readme
A collection of icons by ABDT
Размер
import React from 'react'
import { Close } from '@abdt/icons';
const CloseSmall = () => <Close />
const CloseLarge = () => <Close size="large" />
Вариация
import React from 'react'
import closeSmall from '@abdt/icons/close_small.svg';
const CloseSmall = () => <img src={closeSmall} alt="" aria-hidden="true" />
Цвет
import React from 'react'
import { Close } from '@abdt/icons';
const CloseWithColor = () => <Close color="#10002b" />