@drivy/cobalt
Version:
Opinionated design system for Drivy's projects.
14 lines (13 loc) • 360 B
TypeScript
import React from "react";
export interface NoteProps {
children: React.ReactNode;
/**
* will fill available width
* @default false
*/
fullWidth?: boolean;
className?: string;
isError?: boolean;
}
export declare const Note: ({ children, fullWidth, className, isError, }: NoteProps) => React.JSX.Element;
export default Note;