mirror of
https://github.com/koreanbots/core.git
synced 2025-12-16 06:20:24 +00:00
7 lines
200 B
TypeScript
7 lines
200 B
TypeScript
const Segment = ({ children }):JSX.Element => {
|
|
return <div className='bg-little-white dark:bg-discord-black text-black dark:text-white p-5 rounded-sm'>
|
|
{children}
|
|
</div>
|
|
}
|
|
|
|
export default Segment |