import { Blockquote } from '@thinker-core/mantine-core';
import { InfoIcon } from '@phosphor-icons/react';
function Demo() {
const icon = <InfoIcon />;
return (
<Blockquote color="ocean" iconSize={38} cite="– Forrest Gump" icon={icon} mt="xl">
Life is like an npm install – you never know what you are going to get.
</Blockquote>
);
}