Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/forms / src / new-forms / forms / styled.ts
Size: Mime:
import { styled } from 'styleh-components'

export const StyledForm = styled.form.attrs({
  /**
   * @security
   *  putting as post
   *  so it will never affect the url before js loads
   */
  method: 'POST',
})``
export const StyledSubmitButton = styled.button.attrs({
  type: 'submit',
})``