Skip to content

Commit

Permalink
remove tertiary button style (#107)
Browse files Browse the repository at this point in the history
* remove tertiary button style

* version up
  • Loading branch information
tenub authored Oct 17, 2024
1 parent 9528784 commit 1361213
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@schematichq/schematic-components",
"version": "0.3.8",
"version": "0.3.9",
"main": "dist/schematic-components.cjs.js",
"module": "dist/schematic-components.esm.js",
"types": "dist/schematic-components.d.ts",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ interface DesignProps {
callToAction: {
isVisible: boolean;
buttonSize: "sm" | "md" | "lg";
buttonStyle: "primary" | "secondary" | "tertiary";
buttonStyle: "primary" | "secondary";
};
}

Expand Down
2 changes: 1 addition & 1 deletion components/src/components/ui/button/EmbedButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { Button } from "./Button";

export const EmbedButton = styled(Button)<{
$size?: "sm" | "md" | "lg";
$color?: "primary" | "secondary" | "tertiary";
$color?: "primary" | "secondary";
$variant?: "outline" | "filled";
}>`
font-family: "Public Sans", sans-serif;
Expand Down

0 comments on commit 1361213

Please sign in to comment.