@ant-design/icons#FileUnknownOutlined JavaScript Examples

The following examples show how to use @ant-design/icons#FileUnknownOutlined. 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: oops.js    From ctf_platform with MIT License 6 votes vote down vote up
render() {
    return (
      <Layout className="layout-style">
        <FileUnknownOutlined style={{ fontSize: "400%", marginBottom: "2vh" }} />
        <h2>Welcome to Limbo.</h2>
        <h3>There is nothing here. Really.</h3>
        <p>You probably ended up here because you tried to access a page you did not have access to or tried to access a page that does not exist.</p>
        <p>Click on any of the links on the menu to return to society.</p>
        <p>If you believe this is an error, please contact an admin.</p>
      </Layout>
    );
  }