tscircuit/ti

ti tscircuit library

Version
1.0.85
License
unset
Stars
0

lib/chips/MSPM0G3507.circuit.tsx

PCBPCB preview for lib/chips/MSPM0G3507.circuit.tsx
SchematicSchematic preview for lib/chips/MSPM0G3507.circuit.tsx
import type { ComponentProps } from "react";

import { MSPM0G3507SPMR } from "./MSPM0G3507SPMR.circuit.tsx";

type MSPM0G3507FootprintVariant = "lqfp_64" | (string & {});

type MSPM0G3507Props = ComponentProps<typeof MSPM0G3507SPMR> & {
  footprintVariant?: MSPM0G3507FootprintVariant;
};

export const MSPM0G3507 = ({
  footprintVariant = "lqfp_64",
  ...props
}: MSPM0G3507Props) => {
  if (footprintVariant === "lqfp_64") {
    return <MSPM0G3507SPMR {...props} />;
  }

  return <MSPM0G3507SPMR {...props} />;
};