@ant-design/icons#CopyrightOutlined JavaScript Examples

The following examples show how to use @ant-design/icons#CopyrightOutlined. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: Footer.js    From the-eye-knows-the-garbage with MIT License 6 votes vote down vote up
FooterView = function FooterView(_ref) {
  var links = _ref.links,
      copyright = _ref.copyright,
      style = _ref.style,
      className = _ref.className;
  return React.createElement(Footer, {
    className: className,
    style: Object.assign({
      padding: 0
    }, style)
  }, React.createElement(GlobalFooter, {
    links: links !== undefined ? links : defaultLinks,
    copyright: copyright === false ? null : React.createElement(Fragment, null, "Copyright ", React.createElement(CopyrightOutlined, null), " ", copyright || defaultCopyright)
  }));
}
Example #2
Source File: index.js    From mixbox with GNU General Public License v3.0 5 votes vote down vote up
export default function (props) {
    return (
        <div styleName="footer" {...props}>
            Copyright <CopyrightOutlined /> xxx 2019
        </div>
    );
}