Demonstration - Aztec

Capable of containing large amounts of data in a variety or characters.
Can be used in both Compact and Full versions.
Supports the use of Extended Channel Interpretation (ECI).
* 30 character limit for this demo.
import { BakeryColor, BakeryFont } from '@barcode-bakery/barcode-react';
import { BakeryAztec } from '@barcode-bakery/barcode-react/aztec';

export default function Home() {
  const colorBlack = new BakeryColor(0, 0, 0);
  const colorWhite = new BakeryColor(255, 255, 255);

  return <BakeryAztec
    scale={2}
    foregroundColor={colorBlack}
    backgroundColor={colorWhite}
    text='Aztec'
  >;
}