UNPKG

@drivy/cobalt

Version:

Opinionated design system for Drivy's projects.

7 lines (6 loc) 244 B
import React, { PropsWithChildren } from "react"; export type NoticePropsType = PropsWithChildren<{ withIcon?: boolean; }>; export declare const Notice: ({ withIcon, children }: NoticePropsType) => React.JSX.Element; export default Notice;