mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-05 04:51:30 +01:00
33 lines
712 B
TypeScript
33 lines
712 B
TypeScript
import classNames from 'classnames'
|
|
|
|
type ShadowContainerProps = React.ComponentPropsWithRef<'div'>
|
|
|
|
export const ShadowContainer: React.FC<ShadowContainerProps> = (props) => {
|
|
const { children, className, ...rest } = props
|
|
|
|
return (
|
|
<>
|
|
<div
|
|
className={classNames(
|
|
'shadow-container h-full max-w-full break-words',
|
|
className
|
|
)}
|
|
{...rest}
|
|
>
|
|
{children}
|
|
</div>
|
|
|
|
<style jsx>
|
|
{`
|
|
.shadow-container {
|
|
box-shadow: 0px 0px 6px 6px rgba(0, 0, 0, 0.25);
|
|
border: 1px solid black;
|
|
border-radius: 1rem;
|
|
margin-bottom: 50px;
|
|
}
|
|
`}
|
|
</style>
|
|
</>
|
|
)
|
|
}
|