Files
bigcapital/packages/webapp/src/components/Layout/Box/Box.tsx
2024-03-22 20:45:05 +02:00

13 lines
304 B
TypeScript

import React from 'react';
import { HTMLDivProps, Props } from '@blueprintjs/core';
export interface BoxProps extends Props, HTMLDivProps {
className?: string;
}
export function Box({ className, ...rest }: BoxProps) {
const Element = 'div';
return <Element className={className} {...rest} />;
}