mirror of
https://github.com/koreanbots/core.git
synced 2025-12-16 22:30:23 +00:00
14 lines
297 B
TypeScript
14 lines
297 B
TypeScript
const Segment = ({ children }:SegmentProps): JSX.Element => {
|
|
return (
|
|
<div className='py-3 px-7 text-black dark:text-white dark:bg-discord-black bg-little-white rounded-sm'>
|
|
{children}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
interface SegmentProps {
|
|
children: JSX.Element | JSX.Element[]
|
|
}
|
|
|
|
export default Segment
|