You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
864 B
29 lines
864 B
import { Collapse, Divider } from 'antd';
|
|
import React from 'react';
|
|
|
|
const text = `
|
|
A dog is a type of domesticated animal.
|
|
Known for its loyalty and faithfulness,
|
|
it can be found as a welcome guest in many households across the world.
|
|
`;
|
|
|
|
const App: React.FC = () => (
|
|
<>
|
|
<Divider orientation="left">Default Size</Divider>
|
|
<Collapse
|
|
items={[{ key: '1', label: 'This is default size panel header', children: <p>{text}</p> }]}
|
|
/>
|
|
<Divider orientation="left">Small Size</Divider>
|
|
<Collapse
|
|
size="small"
|
|
items={[{ key: '1', label: 'This is small size panel header', children: <p>{text}</p> }]}
|
|
/>
|
|
<Divider orientation="left">Large Size</Divider>
|
|
<Collapse
|
|
size="large"
|
|
items={[{ key: '1', label: 'This is large size panel header', children: <p>{text}</p> }]}
|
|
/>
|
|
</>
|
|
);
|
|
|
|
export default App;
|
|
|