rc-footer
Version:
Pretty Footer react component used in used in ant.design
104 lines (82 loc) • 5.26 kB
Markdown
# rc-footer 🐾
[![NPM version][npm-image]][npm-url]
[![build status][travis-image]][travis-url]
[![Codecov][codecov-image]][codecov-url]
[![david deps][david-image]][david-url]
[![david devDeps][david-dev-image]][david-dev-url]
[![npm download][download-image]][download-url]
[npm-image]: http://img.shields.io/npm/v/rc-footer.svg?style=flat-square
[npm-url]: http://npmjs.org/package/rc-footer
[travis-image]: https://img.shields.io/travis/com/react-component/footer.svg?style=flat-square
[travis-url]: https://travis-ci.com/react-component/footer
[codecov-image]: https://img.shields.io/codecov/c/github/react-component/footer/master.svg?style=flat-square
[codecov-url]: https://codecov.io/gh/react-component/footer/branch/master
[david-image]: https://david-dm.org/react-component/footer/status.svg?style=flat-square
[david-dev-url]: https://david-dm.org/react-component/footer?type=dev
[david-dev-image]: https://david-dm.org/react-component/footer/dev-status.svg?style=flat-square
[david-url]: https://david-dm.org/react-component/footer
[download-image]: https://img.shields.io/npm/dm/rc-footer.svg?style=flat-square
[download-url]: https://npmjs.org/package/rc-footer
Pretty Footer react component used in [ant.design](https://ant.design).

## Live Demo
https://react-component.github.io/footer/
## Install
[](https://npmjs.org/package/rc-footer)
## Usage
```js
import Footer from 'rc-footer';
import { render } from 'react-dom';
render(
<Footer
columns={[
{
icon: <img src="https://gw.alipayobjects.com/zos/rmsportal/XuVpGqBFxXplzvLjJBZB.svg" />,
title: '语雀',
url: 'https://yuque.com',
description: '知识创作与分享工具',
openExternal: true,
},
]}
bottom="Made with ❤️ by AFX"
/>,
mountNode
);
```
## API
| Property | Type | Default | Description |
| -------------- | ------------------------ | --------- | -------------------------------------------------------- |
| prefixCls | string | rc-footer | |
| className | string | '' | additional class name of footer |
| style | React.CSSProperties | | style properties of footer |
| columns | [Column](#Column) Array | [] | columns data inside footer |
| bottom | ReactNode | | extra bottom area beneath footer columns |
| theme | 'light' \| 'dark' | 'dark' | preset theme of footer |
| backgroundColor| string | '#000' | background color of footer |
| columnLayout | 'space-around' or 'space-between' | 'space-around' | justify-content value of columns element|
### Column
| Property | Type | Default | Description |
| -------------- | -------------------------- | --------- | ------------------------------------------------------ |
| icon | ReactNode | | icon that before column title |
| title | ReactNode | | title of column |
| items | [Item](#Column-Item) Array | [] | items data inside each column |
| className | string | '' | additional class name of footer |
| style | React.CSSProperties | | style properties of footer |
### Column Item
| Property | Type | Default | Description |
| -------------- | ------------------------ | --------- | -------------------------------------------------------- |
| icon | ReactNode | | icon that before column title |
| title | ReactNode | | title of column |
| description | ReactNode | | description of column, come after title |
| url | string | | link url of item title |
| openExternal | boolean | false | link target would be `_blank` if `openExternal` is ture |
| className | string | '' | additional class name of footer |
| style | React.CSSProperties | | style properties of footer |
| LinkComponent | React.ReactType | 'a' | the link element to render item |
## Development
```
npm install
npm start
```
## License
rc-footer is released under the MIT license.