starting off header with the full window dimensions
This commit is contained in:
@@ -1,7 +1,4 @@
|
||||
export enum LogoType {
|
||||
primary = "primary",
|
||||
small = "small",
|
||||
}
|
||||
export type LogoType = "primary" | "small";
|
||||
|
||||
export default function Logo({
|
||||
className,
|
||||
@@ -10,7 +7,7 @@ export default function Logo({
|
||||
className: string;
|
||||
type?: LogoType;
|
||||
}) {
|
||||
if (type === LogoType.small) {
|
||||
if (type === "small") {
|
||||
return (
|
||||
<svg
|
||||
width="85"
|
||||
|
||||
Reference in New Issue
Block a user