mirror of
https://github.com/labring/FastGPT.git
synced 2025-10-16 08:01:18 +00:00

* feat: add new Markdown components and enhance i18n support (cherry picked from commit b0b6cc7ad49ac35f070389744a764928d7103074) * feat: support structured data render --------- Co-authored-by: FinleyGe <m13203533462@163.com>
9 lines
205 B
TypeScript
9 lines
205 B
TypeScript
import React from 'react';
|
|
import { Box } from '@chakra-ui/react';
|
|
|
|
const Divider: React.FC = () => {
|
|
return <Box width="100%" height="1px" bg="gray.200" my={4} mx="auto" />;
|
|
};
|
|
|
|
export default Divider;
|