@octopusdeploy/design-system-components
Version:
The design systems component library.
12 lines (11 loc) • 367 B
TypeScript
interface NoteProps {
/** @deprecated */
style?: React.CSSProperties;
checkboxNote?: boolean;
/** @deprecated */
className?: string;
heading?: string;
children?: React.ReactNode;
}
export declare function Note({ heading, children, style, checkboxNote, className }: NoteProps): import("react/jsx-runtime").JSX.Element;
export default Note;