@material-ui/icons#Forum TypeScript Examples

The following examples show how to use @material-ui/icons#Forum. 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: poll.create.tsx    From anchor-web-app with Apache License 2.0 5 votes vote down vote up
function PollCreateBase({ className }: PollCreateProps) {
  return (
    <CenteredLayout className={className}>
      <Section>
        <h1>Choose a proposal</h1>

        <ul>
          <PollLink
            to={`/poll/create/modify-anc-distribution`}
            title="Modify ANC Distribution"
            description="Modify the ANC distribution parameters"
          />

          <PollLink
            to={`/poll/create/modify-borrow-interest`}
            title="Modify Borrow Interest"
            description="Modify the interest model parameters "
          />

          <PollLink
            to={`/poll/create/modify-collateral-attribute`}
            title="Modify Collateral Attribute"
            description="Modify the collateral attributes of an existing bAsset"
          />

          <PollLink
            to={`/poll/create/modify-market-parameters`}
            title="Modify Market Parameters"
            description="Modify the market parameters"
          />

          <PollLink
            to={`/poll/create/spend-community-pool`}
            title="Spend Community Pool"
            description="Submit community pool spending poll"
          />

          <PollLink
            to={`/poll/create/register-collateral-attributes`}
            title="Register Collateral Attributes"
            description="Register a bAsset as collateral"
          />

          <PollLink
            to={`/poll/create/text-proposal`}
            title="Text Proposal"
            description="Upload a text poll"
          />
        </ul>

        <BorderButton
          className="forum"
          component="a"
          href={links.forum}
          target="_blank"
          rel="noreferrer"
        >
          <IconSpan>
            <Forum /> Forum discussion is recommended before poll creation
          </IconSpan>
        </BorderButton>
      </Section>
    </CenteredLayout>
  );
}