oadp-material
Version:
oadp-material
11 lines (10 loc) • 333 B
TypeScript
import * as React from 'react';
import './index.scss';
export interface OadpButtonBarProps {
style?: React.CSSProperties;
direction?: 'row' | 'column';
justify?: 'start' | 'end' | 'center';
align?: 'start' | 'end' | 'center';
}
declare const OadpButtonBar: React.FC<OadpButtonBarProps>;
export default OadpButtonBar;