# A collection of icons by ABDT

Размер

```sh
import React from 'react'

import { Close } from '@abdt/icons';

const CloseSmall = () => <Close />
const CloseLarge = () => <Close size="large" />
```

Вариация

```sh
import React from 'react'

import closeSmall from '@abdt/icons/close_small.svg';

const CloseSmall = () => <img src={closeSmall} alt="" aria-hidden="true" />
```

Цвет

```sh
import React from 'react'

import { Close } from '@abdt/icons';

const CloseWithColor = () => <Close color="#10002b" />
```
