diff --git a/src/lib/global.ts b/src/lib/global.ts index 41af544e..fad5acd4 100644 --- a/src/lib/global.ts +++ b/src/lib/global.ts @@ -116,7 +116,7 @@ export const Global = styled.div` --woly-canvas-text-active: hsla(var(--bw-0), 1); } - [data-priority='goast'] { + [data-priority='white'] { --woly-shape-default: transparent; --woly-shape-disabled: hsla(var(--bw-200), 1); --woly-shape-hover: transparent; diff --git a/src/woly/atoms/button-icon/index.tsx b/src/woly/atoms/button-icon/index.tsx index 9104a0b9..1612ffc9 100644 --- a/src/woly/atoms/button-icon/index.tsx +++ b/src/woly/atoms/button-icon/index.tsx @@ -7,19 +7,19 @@ interface Props extends React.ButtonHTMLAttributes { className?: string; icon: React.ReactNode; onClick: React.MouseEventHandler; - outlined?: boolean; + weight?: string; } const ButtonIconBase: React.FC = ({ icon, onClick, - outlined = false, priority = 'secondary', + weight = 'fill', ...p }) => (