🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis →
Socket
Book a DemoInstallSign in
Socket

@kano/kbc-forms

Package Overview
Dependencies
Maintainers
17
Versions
139
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@kano/kbc-forms

Forms component

latest
npmnpm
Version
2.1.26
Version published
Weekly downloads
4
-66.67%
Maintainers
17
Weekly downloads
 
Created
Source

kbc-forms

A series of react components for creating form controls.

Usage

KbcInput

import { KbcInput } from '@kano/kbc-forms';

const Component = (props) => {
    return <KbcInput name="firstName" placeholder="First name" />
}

KbcInputButtonGroup

import { KbcInputButtonGroup } from '@kano/kbc-forms';

const Component = (props) => {
    return <KbcInputButtonGroup name="firstName" placeholder="First name" />
}

KbcCheckbox

import { KbcCheckbox } from '@kano/kbc-forms';

const Component = (props) => {
    return <KbcCheckbox name="terms" label="Agree" />
}

KbcRadio

import { KbcRadio } from '@kano/kbc-forms';

const Component = (props) => {
    return (
        <>
            <KbcRadio name="options" id="option-1" label="Option 1" />
            <KbcRadio name="options" id="option-2" label="Option 2" />
        </>
    )
}

FAQs

Package last updated on 17 Feb 2023

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