import React from 'react'; import { Box } from '../Box'; export interface Divisor { type: 'line' | 'space'; } export const Divisor = ({ type }: Divisor) => type === 'line' ? ( ) : ( );