Skip to content

Commit

Permalink
wip: fix tail position
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicole Watts committed Nov 14, 2023
1 parent 94f4161 commit ebd2727
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/perseus/src/widgets/label-image/marker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
import Color from "@khanacademy/wonder-blocks-color";
import {PhosphorIcon} from "@khanacademy/wonder-blocks-icon";

Check failure on line 9 in packages/perseus/src/widgets/label-image/marker.tsx

View workflow job for this annotation

GitHub Actions / Lint, Typecheck, Format, and Test (ubuntu-latest, 16.x)

Module '"@khanacademy/wonder-blocks-icon"' has no exported member 'PhosphorIcon'. Did you mean to use 'import PhosphorIcon from "@khanacademy/wonder-blocks-icon"' instead?

Check failure on line 9 in packages/perseus/src/widgets/label-image/marker.tsx

View workflow job for this annotation

GitHub Actions / Lint, Typecheck, Format, and Test (ubuntu-latest, 16.x)

Module '"@khanacademy/wonder-blocks-icon"' has no exported member 'PhosphorIcon'. Did you mean to use 'import PhosphorIcon from "@khanacademy/wonder-blocks-icon"' instead?
import caretUpIcon from "@phosphor-icons/core/bold/caret-up-bold.svg";

Check failure on line 10 in packages/perseus/src/widgets/label-image/marker.tsx

View workflow job for this annotation

GitHub Actions / Lint, Typecheck, Format, and Test (ubuntu-latest, 16.x)

Cannot find module '@phosphor-icons/core/bold/caret-up-bold.svg' or its corresponding type declarations.

Check failure on line 10 in packages/perseus/src/widgets/label-image/marker.tsx

View workflow job for this annotation

GitHub Actions / Lint, Typecheck, Format, and Test (ubuntu-latest, 16.x)

Cannot find module '@phosphor-icons/core/bold/caret-up-bold.svg' or its corresponding type declarations.
import {select} from "@storybook/addon-knobs";
import {StyleSheet, css} from "aphrodite";
import * as React from "react";

Expand Down Expand Up @@ -209,7 +208,7 @@ const styles = StyleSheet.create({
width: markerSize,
height: markerSize,

marginLeft: 5,
marginLeft: 2,

cursor: "pointer",

Expand Down

0 comments on commit ebd2727

Please sign in to comment.