mirror of
https://github.com/quotefox/Hyper-Station-13.git
synced 2026-08-21 11:46:14 +01:00
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} />
|
|
);
|
|
};
|