mirror of
https://github.com/KabKebab/GS13.git
synced 2026-07-15 01:46:41 +01:00
291dcf9515
[TESTMERGE] Properly working TGUI Next
15 lines
272 B
JavaScript
15 lines
272 B
JavaScript
import { classes } from 'common/react';
|
|
import { Box } from './Box';
|
|
|
|
export const BlockQuote = props => {
|
|
const { className, ...rest } = props;
|
|
return (
|
|
<Box
|
|
className={classes([
|
|
'BlockQuote',
|
|
className,
|
|
])}
|
|
{...rest} />
|
|
);
|
|
};
|