[evokit-box]: /packages/evokit-box/
[evokit-link]: /packages/evokit-link/
[react-component]: //reactjs.org/docs/components-and-props.html
[html-tag]: //html5book.ru/html-tags
[as]: #as
[is]: #is
[preset]: #preset
# Base props
?> All blocks have base props. Also supports other valid props of the React Element for example `ref`, `className`, `onClick` etc.
| Prop name | Possible value | Prop types | Description |
|------------------------|----------------|------------|-------------|
| [as] | `div` `span` etc. | `string` `func` | [HTML tag][html-tag] or [React component][react-component] |
| [preset] | `{b:"", m:"", v:"", css:null}` | `object` | Used to customize the generation of class names and CSS Modules |
> Props are used with the prefix of the block name — `{BLOCK_NAME}-as`
---
### `as`
The type argument can be either a tag name string (such as `div` or `span`), a [React component][react-component] type (a class or a function)
```jsx
import { Link as RouterLink } from "react-router-dom";
import { Link } from 'evokit-link';
import 'evokit-link/style.css';
//
//
//