tscircuit/ti

ti tscircuit library

Version
1.0.85
License
unset
Stars
0

lib/chips/CC3235SF.circuit.tsx

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

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

type CC3235SFFootprintVariant = "vqfn_64_ep" | (string & {});

type CC3235SFProps = ComponentProps<typeof CC3235SF12RGKR> & {
  footprintVariant?: CC3235SFFootprintVariant;
};

export const CC3235SF = ({
  footprintVariant = "vqfn_64_ep",
  ...props
}: CC3235SFProps) => {
  if (footprintVariant === "vqfn_64_ep") {
    return <CC3235SF12RGKR {...props} />;
  }

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