import type { FC } from 'react';
import React from 'react';
import { KolQuote } from '@public-ui/react-v19';
import { SampleDescription } from '../SampleDescription';
export const QuoteBlock: FC = () => (
<>
<SampleDescription>
<p>This sample shows a quote in the "block" variant.</p>
</SampleDescription>
<KolQuote
_label="RFC 1149"
_href="https://datatracker.ietf.org/doc/html/rfc1149"
_quote="Avian carriers can provide high delay, low throughput, and low altitude
service. The connection topology is limited to a single point-to-point path
for each carrier, used with standard carriers, but many carriers can be used
without significant interference with each other, outside early spring.
This is because of the 3D ether space available to the carriers, in contrast
to the 1D ether used by IEEE802.3. The carriers have an intrinsic collision
avoidance system, which increases availability."
_variant="block"
></KolQuote>
</>
);