UNPKG

alinea

Version:

[![npm](https://img.shields.io/npm/v/alinea.svg)](https://npmjs.org/package/alinea) [![install size](https://packagephobia.com/badge?p=alinea)](https://packagephobia.com/result?p=alinea)

8 lines (7 loc) 387 B
import { ComponentType, PropsWithChildren, ReactNode } from 'react'; export interface EntryNoticeProps { icon?: ComponentType; title: ReactNode; variant: 'draft' | 'published' | 'archived' | 'transition' | 'untranslated'; } export declare function EntryNotice({ icon, title, variant, children }: PropsWithChildren<EntryNoticeProps>): import("react/jsx-runtime").JSX.Element;