Socket
Socket
Sign inDemoInstall

@comparaonline/ui-fieldset

Package Overview
Dependencies
Maintainers
14
Versions
176
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@comparaonline/ui-fieldset

The fieldset component is the basic layout component that receives a set of inputs, title and a subtitle.


Version published
Maintainers
14
Created
Source

Fieldset

The fieldset component is the basic layout component that receives a set of inputs, title and a subtitle.

Usage

You need to pass as a children everything that you want to wrap.

import React from 'react';
import { Fieldset } from '@comparaonline/ui-fieldset';
import { TextField } from '@comparaonline/ui-form-fields';

const QuestionGroup: React.SFC<any> = () => (
  <Fieldset
    title="Ingrese sus datos"
    subtitle="Estos datos son muy importantes"
  >
    <TextField {...} />
  </Fieldset>
);
Options

You can set the variant component and align to the title and subtitle text throught props.

import React from 'react';
import { Fieldset } from '@comparaonline/ui-fieldset';
import { TextField } from '@comparaonline/ui-form-fields';

const QuestionGroup: React.SFC<any> = () => (
  <Fieldset
    title="Ingrese sus datos"
    titleAlign="center"
    titleVariant="h1"
    title="Estos datos son muy importantes"
    titleAlign="right"
    titleVariant="body2"
  >
    <TextField {...} />
  </Fieldset>
);

FAQs

Package last updated on 07 May 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc