diff --git a/packages/spindle-ui/src/InlineNotification/InlineNotification.figma.tsx b/packages/spindle-ui/src/InlineNotification/InlineNotification.figma.tsx
index 3eed10d8b..1957ad69e 100644
--- a/packages/spindle-ui/src/InlineNotification/InlineNotification.figma.tsx
+++ b/packages/spindle-ui/src/InlineNotification/InlineNotification.figma.tsx
@@ -9,16 +9,16 @@ figma.connect(
{
imports: ["import { InlineNotification } from '@openameba/spindle-ui';"],
props: {
- type: figma.enum('Type', {
+ variant: figma.enum('variant', {
Information: 'information',
Confirmation: 'confirmation',
Error: 'error',
}),
- layout: figma.enum('Shape', {
+ layout: figma.enum('layout', {
full: 'full',
inset: 'inset',
}),
- emphasis: figma.boolean('Emphasized'),
+ emphasis: figma.boolean('emphasis'),
label: figma.textContent('label'),
leftIcon: figma.enum('Left Icon', {
Icon: ,
@@ -37,9 +37,9 @@ figma.connect(
Button: {''},
}),
},
- example: ({ type, layout, emphasis, label, leftIcon, closeButton }) => (
+ example: ({ variant, layout, emphasis, label, leftIcon, closeButton }) => (