/****************************************************************** * Copyright (C) 2021 LvChengbin * * File: Blockquote/index.tsx * Author: LvChengbin * Time: 07/03/2021 * Description: ******************************************************************/ import React from 'react'; export interface BlockquoteProps { children?: React.ReactNode; } export default function Blockquote({ children }: BlockquoteProps): JSX.Element;