diff --git a/packages/components/src/components/SquiggleItem.tsx b/packages/components/src/components/SquiggleItem.tsx
deleted file mode 100644
index 52330e8b..00000000
--- a/packages/components/src/components/SquiggleItem.tsx
+++ /dev/null
@@ -1,287 +0,0 @@
-import * as React from "react";
-import {
- squiggleExpression,
- environment,
- declaration,
-} from "@quri/squiggle-lang";
-import { NumberShower } from "./NumberShower";
-import {
- DistributionChart,
- DistributionPlottingSettings,
-} from "./DistributionChart";
-import { FunctionChart, FunctionChartSettings } from "./FunctionChart";
-
-function getRange(x: declaration) {
- const first = x.args[0];
- switch (first.tag) {
- case "Float": {
- return { floats: { min: first.value.min, max: first.value.max } };
- }
- case "Date": {
- return { time: { min: first.value.min, max: first.value.max } };
- }
- }
-}
-
-function getChartSettings(x: declaration): FunctionChartSettings {
- const range = getRange(x);
- const min = range.floats ? range.floats.min : 0;
- const max = range.floats ? range.floats.max : 10;
- return {
- start: min,
- stop: max,
- count: 20,
- };
-}
-
-interface VariableBoxProps {
- heading: string;
- children: React.ReactNode;
- showTypes: boolean;
-}
-
-export const VariableBox: React.FC5 to 10
is entered, both numbers are positive, so it
generates a lognormal distribution with 5th and 95th percentiles at 5 and
@@ -74,7 +74,7 @@ If both values are above zero, a `lognormal` distribution is used. If not, a `no
The `mixture` mixes combines multiple distributions to create a mixture. You can optionally pass in a list of proportional weights.
-