mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 05:10:31 +00:00
13 lines
304 B
TypeScript
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} />;
|
|
}
|