1234567891011121314151617181920212223 |
- import React from 'react';
- import { Component } from './styled';
- export type Props = {
- absolute?: boolean;
- orientation?: 'vertical' | 'horizontal';
- variant?: 'fullWidth' | 'inset' | 'middle';
- light?: boolean;
- style?: Record<string, string>;
- };
- const Divider: React.FC<Props> = (props) => <Component {...props} />;
- Divider.defaultProps = {
- absolute: false,
- orientation: 'vertical',
- variant: 'fullWidth',
- light: false,
- style: {},
- };
- export default Divider;
|