Components - hidaytrahman/react-carbonui GitHub Wiki
Button
You may use it just like any other component by importing it.
import { Button } from "react-carbonui";
const MyComp = ({}) => {
return (
<Button label="Hello World!" />
);
};
export default MyComp;
Input
import { Input } from "react-carbonui";
// Use it in the component
<Input placeholder="Enter text here" scale="regular" />
Textarea
import { Textarea } from "react-carbonui";
// Use it in the component
<Textarea fullWidth placeholder="Enter text here" />
Alert
import { Alert } from "react-carbonui";
// Use it in the component
<Alert message="Enter message here" />