@drivy/cobalt
Version:
Opinionated design system for Drivy's projects.
14 lines (13 loc) • 387 B
TypeScript
import type 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) => import("react/jsx-runtime").JSX.Element;
export default Note;