@useloops/design-system
Version:
The official React based Loops design system
14 lines (11 loc) • 426 B
TypeScript
import { SxProps, Theme } from '@mui/material';
import { FunctionComponent } from 'react';
import { TypographyProps } from '../Typography/Typography.js';
interface TextBarDividerProps {
sx?: SxProps<Theme>;
typographyProps?: Partial<TypographyProps>;
text: string;
}
declare const TextBarDivider: FunctionComponent<TextBarDividerProps>;
export { TextBarDivider as default };
export type { TextBarDividerProps };