import * as React from 'react'; import Box from '@mui/joy/Box'; import Button from '@mui/joy/Button'; import Card, { CardProps } from '@mui/joy/Card'; import Checkbox from '@mui/joy/Checkbox'; import Divider from '@mui/joy/Divider'; import Typography from '@mui/joy/Typography'; import ArrowForward from '@mui/icons-material/ArrowForward'; export default function DividerInCard() { const [orientation, setOrientation] = React.useState('vertical'); return (
setOrientation(event.target.checked ? 'horizontal' : 'vertical') } sx={{ mb: 2 }} /> Headline Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry standard dummy text ever since the 1500s
); }