reactstrap#ButtonProps TypeScript Examples

The following examples show how to use reactstrap#ButtonProps. 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: CitationButton.tsx    From nextclade with MIT License 6 votes vote down vote up
ButtonCitationBase = styled(ButtonTransparent)<ButtonProps>`
  margin: 2px 2px;
  height: 38px;
  width: 50px;
  color: ${(props) => props.theme.gray700};

  @media (min-width: 1200px) {
    width: 100px;
  }
`
Example #2
Source File: SettingsButton.tsx    From nextclade with MIT License 6 votes vote down vote up
ButtonSettingsBase = styled(ButtonTransparent)<ButtonProps>`
  margin: 2px 2px;
  height: 38px;
  color: ${(props) => props.theme.gray700};

  width: 50px;
  @media (min-width: 1200px) {
    width: 100px;
  }
`
Example #3
Source File: WhatsNewButton.tsx    From nextclade with MIT License 6 votes vote down vote up
ButtonWhatsNewBase = styled(ButtonTransparent)<ButtonProps>`
  margin: 2px 2px;
  height: 38px;
  width: 50px;
  color: ${(props) => props.theme.gray700};

  @media (min-width: 1200px) {
    width: 100px;
  }
`
Example #4
Source File: CitationButton.tsx    From nextclade with MIT License 5 votes vote down vote up
ButtonOk = styled(Button)<ButtonProps>`
  width: 100px;
`
Example #5
Source File: ErrorPopup.tsx    From nextclade with MIT License 5 votes vote down vote up
ButtonOk = styled(Button)<ButtonProps>`
  width: 100px;
  margin: 5px;
`
Example #6
Source File: SettingsButton.tsx    From nextclade with MIT License 5 votes vote down vote up
ButtonOk = styled(Button)<ButtonProps>`
  width: 100px;
`
Example #7
Source File: WhatsNewButton.tsx    From nextclade with MIT License 5 votes vote down vote up
ButtonOk = styled(Button)<ButtonProps>`
  width: 100px;
`