Brand

Documentation of the available brand logos. Learn how to use it and its available props.

Installation

To get started, install @exponentialeducation/betomic via yarn:

# Yarn
yarn add @exponentialeducation/betomic

Basic example

Using the base logotype in light/dark mode:

How to use

import { Logotype } from "@exponentialeducation/betomic";
const LogotypeExample = () => {
return (
<>
<div className="grid gap-5 py-4">
<div className="bg-surface-50 flex items-center justify-center py-8 rounded-md">
<Logotype className="text-surface-950" />
</div>
<div className="bg-surface-700 flex items-center justify-center py-8 rounded-md">
<Logotype className="text-white" />
</div>
</div>
<div className="flex justify-between space-x-5">
<div className="w-full bg-surface-50 flex items-center justify-center p-10 rounded-md">
<Logotype.Isotype className="text-surface-950" />
</div>
<div className="w-full bg-surface-700 flex items-center justify-center p-10 rounded-md">
<Logotype.Isotype className="text-white" />
</div>
</div>
</>
);
}

Props

prop

description

className?

Prop to add your custom classes