Skip to content

Commit

Permalink
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@eleven-labs/design-system",
"description": "Design System for Eleven Labs",
"version": "0.5.3",
"version": "0.5.4",
"repository": {
"type": "git",
"url": "https://github.com/eleven-labs/design-system.git"
3 changes: 2 additions & 1 deletion src/components/Atoms/Button/Button.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
.button {
$this: &;

display: inline-block;
display: inline-flex;
flex-direction: column;
padding: var(--spacing-xxs) var(--spacing-m);
background: var(--background-color-button, var(--color-amaranth));
color: var(--color-button, var(--color-white));
1 change: 1 addition & 0 deletions src/components/Atoms/Button/Button.tsx
Original file line number Diff line number Diff line change
@@ -24,6 +24,7 @@ export const Button = forwardRef<ButtonProps, 'button'>(
as={as}
ref={ref}
textSize="s"
data-text={typeof children === 'string' ? children : ''}
className={classNames(
'button',
{

0 comments on commit db04bf1

Please sign in to comment.