UNPKG

@cainthus/alex-library

Version:

Component React library for Cainthus - Alex Dashboard.

16 lines (12 loc) 319 B
import { CSSProperties, ReactNode } from 'react'; export type Props = { position: string, className?: string, title?: string, style?: CSSProperties, children: ReactNode }& Partial<DefaultProps>; export const defaultProps = { position: 'start' }; export type DefaultProps = Readonly<typeof defaultProps>;