@smitch/fluid
Version:
A Next/React ui-component libray.
15 lines (14 loc) • 312 B
TypeScript
/// <reference types="react" />
interface BaseProps {
className?: string;
style?: React.CSSProperties;
}
export interface PlaceHolderProps extends BaseProps {
width: string;
height?: string;
background?: string;
color?: string;
text?: string;
format?: 'png' | 'svg';
}
export {};