@photoroom/ui 0.1.549 → 0.1.551
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/action/CloseButton/CloseButton.d.ts +19 -0
- package/components/action/{ClearButton/ClearButton.d.ts.map → CloseButton/CloseButton.d.ts.map} +1 -1
- package/components/action/CloseButton/CloseButton.figma.d.ts +2 -0
- package/components/action/CloseButton/CloseButton.figma.d.ts.map +1 -0
- package/components/action/CloseButton/index.d.ts +2 -0
- package/components/action/CloseButton/index.d.ts.map +1 -0
- package/components/index.d.ts +1 -1
- package/components/structure/PanelHeader/PanelHeaderTrailing.d.ts +1 -1
- package/index.mjs +4 -4
- package/package.json +2 -2
- package/components/action/ClearButton/ClearButton.d.ts +0 -19
- package/components/action/ClearButton/ClearButton.figma.d.ts +0 -2
- package/components/action/ClearButton/ClearButton.figma.d.ts.map +0 -1
- package/components/action/ClearButton/index.d.ts +0 -2
- package/components/action/ClearButton/index.d.ts.map +0 -1
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { VariantProps } from "class-variance-authority";
|
|
2
|
+
declare const closeButtonCva: (props?: ({
|
|
3
|
+
size?: "small" | "medium" | null | undefined;
|
|
4
|
+
variant?: "secondary" | "on-dark" | "secondary-on-dark" | null | undefined;
|
|
5
|
+
disabled?: boolean | null | undefined;
|
|
6
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
7
|
+
type CloseButtonCvaProps = VariantProps<typeof closeButtonCva>;
|
|
8
|
+
export type CloseButtonProps = React.ComponentProps<"button"> & CloseButtonCvaProps;
|
|
9
|
+
/**
|
|
10
|
+
* Close Button
|
|
11
|
+
*
|
|
12
|
+
* https://www.figma.com/design/cHgANa7dtzDDGXk7dKuAOQ/Prism?node-id=6542-12863
|
|
13
|
+
*/
|
|
14
|
+
export declare const CloseButton: {
|
|
15
|
+
({ size, variant, onClick, className, ref, ...props }: CloseButtonProps): import("react").JSX.Element;
|
|
16
|
+
displayName: string;
|
|
17
|
+
};
|
|
18
|
+
export {};
|
|
19
|
+
//# sourceMappingURL=CloseButton.d.ts.map
|
package/components/action/{ClearButton/ClearButton.d.ts.map → CloseButton/CloseButton.d.ts.map}
RENAMED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"
|
|
1
|
+
{"version":3,"file":"CloseButton.d.ts","sourceRoot":"","sources":["../../../../src/components/action/CloseButton/CloseButton.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAO,MAAM,0BAA0B,CAAC;AAE7D,QAAA,MAAM,cAAc;;;;8EAmCnB,CAAC;AAoBF,KAAK,mBAAmB,GAAG,YAAY,CAAC,OAAO,cAAc,CAAC,CAAC;AAE/D,MAAM,MAAM,gBAAgB,GAAG,KAAK,CAAC,cAAc,CAAC,QAAQ,CAAC,GAAG,mBAAmB,CAAC;AAEpF;;;;GAIG;AACH,eAAO,MAAM,WAAW;2DAOrB,gBAAgB;;CAgBlB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CloseButton.figma.d.ts","sourceRoot":"","sources":["../../../../src/components/action/CloseButton/CloseButton.figma.tsx"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/action/CloseButton/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC"}
|
package/components/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ export * from "./action/BlogSocialButton";
|
|
|
4
4
|
export * from "./action/Button";
|
|
5
5
|
export * from "./action/ButtonCluster";
|
|
6
6
|
export * from "./action/CircularButton";
|
|
7
|
-
export * from "./action/
|
|
7
|
+
export * from "./action/CloseButton";
|
|
8
8
|
export * from "./action/FieldClearButton";
|
|
9
9
|
export * from "./action/FilterPullDownButton";
|
|
10
10
|
export * from "./action/FilterTag";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ButtonProps } from "../../action/Button";
|
|
2
2
|
export type PanelHeaderTrailingProps = {
|
|
3
|
-
type: "button" | "pullDownButton" | "
|
|
3
|
+
type: "button" | "pullDownButton" | "closeButton";
|
|
4
4
|
children?: React.ReactNode;
|
|
5
5
|
className?: string;
|
|
6
6
|
onClick?: () => void;
|
package/index.mjs
CHANGED
|
@@ -7233,7 +7233,7 @@ var Gre = ({ as: e }) => e ? /* @__PURE__ */ I(e, {
|
|
|
7233
7233
|
});
|
|
7234
7234
|
_d.displayName = "CircularButton";
|
|
7235
7235
|
//#endregion
|
|
7236
|
-
//#region src/components/action/
|
|
7236
|
+
//#region src/components/action/CloseButton/CloseButton.tsx
|
|
7237
7237
|
var qre = W(["inline-flex items-center justify-center rounded-full outline-hidden transition-all"], {
|
|
7238
7238
|
variants: {
|
|
7239
7239
|
size: {
|
|
@@ -7300,7 +7300,7 @@ var qre = W(["inline-flex items-center justify-center rounded-full outline-hidde
|
|
|
7300
7300
|
size: e
|
|
7301
7301
|
}) })
|
|
7302
7302
|
});
|
|
7303
|
-
vd.displayName = "
|
|
7303
|
+
vd.displayName = "CloseButton";
|
|
7304
7304
|
//#endregion
|
|
7305
7305
|
//#region src/components/action/FieldClearButton/FieldClearButton.tsx
|
|
7306
7306
|
var yd = ({ className: e, ...t }) => /* @__PURE__ */ I("button", {
|
|
@@ -53772,7 +53772,7 @@ var P5 = ({ type: e, children: t, className: n, onClick: r, disabled: i, icon: a
|
|
|
53772
53772
|
onClick: r,
|
|
53773
53773
|
disabled: i,
|
|
53774
53774
|
children: t
|
|
53775
|
-
}) : e === "
|
|
53775
|
+
}) : e === "closeButton" ? /* @__PURE__ */ I(vd, {
|
|
53776
53776
|
ref: s,
|
|
53777
53777
|
variant: "secondary",
|
|
53778
53778
|
size: "medium",
|
|
@@ -60635,6 +60635,6 @@ var Fwe = $9, Iwe = ({ videoId: e, className: t }) => {
|
|
|
60635
60635
|
}) : null;
|
|
60636
60636
|
};
|
|
60637
60637
|
//#endregion
|
|
60638
|
-
export { V7 as API_BASIC_PLAN_SHORTNAME, U7 as API_ENTERPRISE_PLAN_SHORTNAME, H7 as API_PLUS_PLAN_SHORTNAME, Ibe as AccentDropZone, Lbe as AchievementsBlock, Wre as ActionBar, nU as ActionButton, oW as ActivityIndicator, xve as ActivityRow, Rbe as ApiHeroBlock, hSe as ApiPricingCardsContainer, _Se as ApiPricingCardsItem, CSe as ApiPricingFeaturesLegend, wSe as ApiPricingFeaturesSectionItemBadge, vSe as ApiPricingMonthlyPricePerImage, ySe as ApiPricingPartnerCard, md as AppButton, kSe as AppPricingCardsContainer, ASe as AppPricingCardsGroup, jSe as AppPricingCardsItemV2, MSe as AppPricingFeaturesLegend, NSe as AppPricingFeaturesPlanHeader, PSe as AppPricingFeaturesSectionItemBadge, v7 as ArticleAuthor, b7 as ArticleContent, Bbe as ArticleHeroBlock, Vbe as AssetPreview, qh as Avatar, Tve as AvatarSkeleton, jve as AvatarStack, Wbe as AwardsBlock, qbe as BLOCK_BACKGROUND_VARIANTS, ng as Badge, PU as BatchSectionMenuContent, Gbe as BentoBlock, Kbe as BentoCard, C7 as BlockBackground, Jbe as BlogActionBlock, lW as BlogActionCard, uW as BlogEditorialCard, Ybe as BlogQuoteBlock, hd as BlogSocialButton, w7 as BlogSubtleActionBlock, MU as BoardSection, IK as Bone, Xbe as BrandHeroBlock, Zbe as BrandInsightBlock, Qbe as BrandListBlock, T7 as BrandListRow, exe as BrandScoreBlock, Mve as Breadcrumbs, fd as Button, gd as ButtonCluster, zre as CDN, Mhe as CODE_LENGTH, T4 as CanvasInput, txe as CardsBlock, nxe as CardsHeroBlock, rxe as CareersBlock, ixe as CareersBlockItem, cB as CheckGroup, oB as CheckGroupContext, YW as Checkbox, jhe as CheckboxField, tW as CheckboxIndicator, rW as CheckboxPullDown, b4 as ChoiceFeedTile, x4 as ChoiceFeedTileGroup, m5 as ChoiceMultipleGroup, h5 as ChoiceSingleGroup, _d as CircularButton, vd as
|
|
60638
|
+
export { V7 as API_BASIC_PLAN_SHORTNAME, U7 as API_ENTERPRISE_PLAN_SHORTNAME, H7 as API_PLUS_PLAN_SHORTNAME, Ibe as AccentDropZone, Lbe as AchievementsBlock, Wre as ActionBar, nU as ActionButton, oW as ActivityIndicator, xve as ActivityRow, Rbe as ApiHeroBlock, hSe as ApiPricingCardsContainer, _Se as ApiPricingCardsItem, CSe as ApiPricingFeaturesLegend, wSe as ApiPricingFeaturesSectionItemBadge, vSe as ApiPricingMonthlyPricePerImage, ySe as ApiPricingPartnerCard, md as AppButton, kSe as AppPricingCardsContainer, ASe as AppPricingCardsGroup, jSe as AppPricingCardsItemV2, MSe as AppPricingFeaturesLegend, NSe as AppPricingFeaturesPlanHeader, PSe as AppPricingFeaturesSectionItemBadge, v7 as ArticleAuthor, b7 as ArticleContent, Bbe as ArticleHeroBlock, Vbe as AssetPreview, qh as Avatar, Tve as AvatarSkeleton, jve as AvatarStack, Wbe as AwardsBlock, qbe as BLOCK_BACKGROUND_VARIANTS, ng as Badge, PU as BatchSectionMenuContent, Gbe as BentoBlock, Kbe as BentoCard, C7 as BlockBackground, Jbe as BlogActionBlock, lW as BlogActionCard, uW as BlogEditorialCard, Ybe as BlogQuoteBlock, hd as BlogSocialButton, w7 as BlogSubtleActionBlock, MU as BoardSection, IK as Bone, Xbe as BrandHeroBlock, Zbe as BrandInsightBlock, Qbe as BrandListBlock, T7 as BrandListRow, exe as BrandScoreBlock, Mve as Breadcrumbs, fd as Button, gd as ButtonCluster, zre as CDN, Mhe as CODE_LENGTH, T4 as CanvasInput, txe as CardsBlock, nxe as CardsHeroBlock, rxe as CareersBlock, ixe as CareersBlockItem, cB as CheckGroup, oB as CheckGroupContext, YW as Checkbox, jhe as CheckboxField, tW as CheckboxIndicator, rW as CheckboxPullDown, b4 as ChoiceFeedTile, x4 as ChoiceFeedTileGroup, m5 as ChoiceMultipleGroup, h5 as ChoiceSingleGroup, _d as CircularButton, vd as CloseButton, D4 as CodeInput, ige as CollapsibleSliderField, Che as CollectionTile, eJ as ColorPalette, NY as ColorPicker, FY as ColorRow, IW as ColorSwatch, nJ as ColorWheel, iW as ColumnHeader, Sve as CommentRow, axe as ComparisonBlock, gW as ComparisonSlider, oxe as ComparisonTable, oH as ContextMenu, lX as CropBoxFrame, sxe as CustomerStoriesBlock, vW as CustomerStoryCard, cxe as DataBlock, lxe as DataBlockItem, Bq as Dialog, uxe as DimensionCard, dxe as DimensionCardsBlock, eH as Divider, lge as DropZone, a3 as DropZoneAreaWrapper, s3 as DropZoneFullscreen, o3 as DropZoneOverlay, Gq as DropdownListBox, eU as DropdownMenu, qq as DropdownMenuDivider, g3 as DropdownMenuMultipleSelectionItem, Jq as DropdownMenuNumberItem, Yq as DropdownMenuSectionHeader, Kq as DropdownMenuSingleSelectionItem, Xq as DropdownMenuSpaceActionItem, Zq as DropdownMenuSpaceItem, WH as DropdownSearchField, kW as EditorialCard, fxe as EditorialLineupBlock, dye as EmptySpace, pxe as EnterpriseGradeBlock, mxe as EnterpriseGradeCard, Cve as EventRow, hxe as ExtraTextBlock, gxe as FaqBlock, _xe as FaqItem, bxe as FeatureBlock, wxe as FeatureBlockListItem, xxe as FeatureClassicVisual, Sxe as FeatureSwitcher, Cxe as FeatureVideoElement, vxe as FeaturesBlock, $ye as FeaturesList, Txe as FeaturesListBlock, Exe as FeaturesListBlockItem, Dxe as FeaturesSpotlightBlock, Dg as FeedTile, yd as FieldClearButton, $q as FieldLabel, bd as FilterPullDownButton, xd as FilterTag, Yre as FilterTagList, x3 as FloatingInput, JY as FloatingPanel, IY as FloatingPanelContent, zY as FloatingPanelHeader, kxe as FocusBlock, AW as Folder, C3 as FolderList, H6 as FontFamilyRow, w3 as FontWeightSelectorItem, k7 as FooterV2Block, fye as FullScreenLoader, Mxe as GalaAwardCard, Nxe as GalaBlock, pye as Gauge, M7 as GlossaryAlphabet, Fxe as GlossarySection, N7 as GlossaryTermCard, Ixe as GuidelineBlock, zxe as GuidelineCard, Lxe as GuidelineSection, F7 as HeaderBanner, tbe as Heading, Xh as HelpButton, kP as HelperText, Zh as HeroButton, Vxe as HeroTitleBlock, c3 as HiddenFileInput, I5 as HighLightedText, The as Hint, Hxe as HomeHeroBlock, YY as HoverObjectBox, D3 as IconSwitch, O3 as ImagePicker, b3 as ImageWidget, Uxe as ImpactBlock, Wxe as ImpactCard, k3 as ImportWidget, abe as InfoBanner, Ohe as InfoBar, $h as InfoButton, Gxe as InfoSnapshot, Kxe as InfoSnapshotItem, jW as InfoTable, MW as InfoTableRow, eg as InlineButton, MY as InlineColorPicker, A3 as InlineRadioGroup, j3 as InlineSelector, Mg as InputButton, Bg as InsertActionBar, qxe as JoinTeamBlock, Jxe as JudgesBlock, Yxe as JudgesBlockCard, AP as Label, I7 as LanguagePickerItem, N3 as LargeOptionTile, XY as LayerIndicator, Tg as LazyImage, NW as LightPromoBanner, Kg as LimitButton, Hq as LimitGauge, Gg as LimitIndicatorGauge, PW as LinkCard, ZY as ListItem, _ye as ListingGauge, b5 as ListingScoreButton, Xg as LoginButton, Xxe as LogosBlock, Zxe as LogosHighlightBlock, Qxe as LogosWallBlock, RP as MenuItemButton, $xe as MissionBlock, jbe as MobileDrawer, Zg as MobileNavigationButton, nK as ModeSelectionTile, pW as MoreTile, tU as MultiActionWidget, n_ as NavigationButton, t_ as NavigationToggleButton, zW as NewPaletteTile, x5 as Notification, bye as NotificationImage, Kye as NotificationStack, qye as NotificationsStore, OY as NumberField, Fbe as NumberSelectField, z_e as NumberedSectionHeader, QY as ObjectItem, LW as ObjectPreview, BW as OfferCard, eSe as OffersBlock, F3 as OptionGroup, I3 as OptionSelectionListItem, VW as OptionTable, GW as OptionTableRow, L3 as OptionTile, i_ as OverlayButton, r_ as OverlayButtonBase, a_ as OverlaySelectButton, Wve as PLAN_COLORS, e9 as PROMO_BANNER_SESSION_KEY, tSe as PageTitle, F5 as PanelHeader, N5 as PanelHeaderSwitcherButton, R3 as PanelStandardInput, I_e as PeopleListItem, nSe as PersonaBlock, rSe as PersonaCard, bge as PhotoDropZone, iX as Pill, eX as PillDivider, z3 as PlaceholderTile, Uve as PlanPicker, iSe as PlaygroundBlock, aSe as PlaygroundHeroBlock, kU as Popover, oSe as Pr100HeroBlock, sX as PresenceObjectBox, V3 as PresetGroup, sSe as PressBlock, cW as PreviewBox, bSe as PricingFeatures, Y7 as PricingFeaturesLegend, xSe as PricingFeaturesSection, SSe as PricingFeaturesSectionItem, X7 as PricingFeaturesSectionItemBadge, cSe as PricingHeroBlock, FSe as PricingPicker, RSe as PricingPickerButton, cg as ProBadge, JW as ProductActionBar, fG as ProductListItem, dG as ProductListItemStatus, pG as ProductTile, AK as Progress, k5 as ProgressStep, JK as ProgressTimer, mG as PromoBanner, zSe as PromoBannerBlock, S4 as Prompt, H3 as PromptInput, hG as PromptTile, SG as PropList, d_ as PullDownButton, f_ as QuickActionCard, BSe as QuickToolHeroBlock, VSe as QuoteBlock, U3 as RadioGroup, Oge as ReactionBar, kge as ReactionButton, USe as RelatedToolsBlock, p_ as RetryButton, GSe as Review, WSe as ReviewsBlock, v_ as RoundButton, K3 as SamplePicker, E7 as ScoreBlockGauge, q3 as SearchInput, L6 as SearchableSelect, U6 as SectionHeader, V_e as SectionHeaderSkeleton, rK as SectionSpace, KSe as SectionTitle, b_ as SegmentedButton, S_ as SegmentedButtonStack, j8 as SegmentedControl, dY as SelectField, h3 as SelectTrigger, tK as SelectionBadge, p4 as SelectionObjectBox, eK as SelectionTile, rG as SellScore, NU as Shortcut, M8 as SideNavigationHeader, N8 as SideNavigationItem, Yve as SideNavigationItemSkeleton, qSe as SidePageTitle, W6 as SizeListItem, r3 as Slider, A_e as SliderField, JSe as SmallSectionTitle, C_ as SocialButton, Qq as SpacePullDownButton, Uq as SpaceUsageDialog, Oxe as SpotlightCard, Wq as SpotlightDialog, T_ as StandaloneLink, iK as StarterTile, aK as StepCard, YSe as StepsBlock, uP as StoreButton, lg as StudioBadge, whe as Suggestion, qW as SwitchField, R6 as SwitchGroup, K8 as TabNavigation, Z8 as Tabs, t9 as TagCloudBlock, z6 as TagField, $8 as TagGroup, n5 as TagNavigation, XSe as TakeActionBlock, ZSe as TakeActionBlockV2, oK as Task, $Se as TestimonialItem, eCe as TestimonialSpotlightBlock, tCe as TestimonialSpotlightCard, QSe as TestimonialsBlock, NP as TextArea, nCe as TextContentBlock, iCe as TextContentCard, B6 as TextEditionBox, V6 as TextField, F_e as TextFieldLabel, mY as TextInput, C4 as TextSuggestion, RK as Tile, aCe as TimelineBlock, oCe as TimelineCard, Xye as ToastProgress, DP as ToggleButton, zK as ToolBanner, r9 as ToolCard, sCe as ToolCategoryBannerBlock, i9 as ToolLinkCard, r5 as ToolMenuButton, a9 as ToolSmallCard, VK as ToolTile, Th as Tooltip, Dh as TooltipSection, Jh as TooltipUserRow, o9 as TopicsBlock, Zye as TransformationEmptySpace, lCe as TrustBlock, aG as UnpublishedStatus, dCe as UseCaseItemContentTransform, fCe as UseCaseItemContentTransformItem, uCe as UseCasesBlock, gCe as VISUAL_BLOCK_ASPECT_RATIOS, PP as ValidationBanner, mCe as ValueCard, pCe as ValuesBlock, vve as VariantsList, v8 as VariantsListItem, UK as VideoPlayer, YK as VideoTile, hCe as VisionHeroBlock, _Ce as VisualBlock, $K as VisualToolTile, P9 as WEBSITE_NAV_OVERLAY_SCROLL_ID, yCe as WalkthroughBlock, QCe as WebsiteNavigation, $Ce as WebsiteNavigationAccordion, ewe as WebsiteNavigationAccordionItem, s9 as WebsiteNavigationButton, I9 as WebsiteNavigationCtaSection, L9 as WebsiteNavigationItem, ZCe as WebsiteNavigationLink, N9 as WebsiteNavigationMenu, R9 as WebsiteNavigationMoreItem, F9 as WebsiteNavigationOverlay, z9 as WebsiteNavigationOverlayLink, twe as WebsiteNavigationPanel, B9 as WebsiteNavigationSection, V9 as WebsiteNavigationStory, H9 as WebsiteNavigationTestimonial, Iwe as YoutubeEmbed, _4 as ZoomPill, y7 as articleTableClassName, FK as boneVariants, U as cn, zq as contentVariants, Yh as convertMarkdownLinksToHTML, g5 as getListingGaugeTone, rd as isValidComponent, _5 as listingGaugeToneVariants, nd as noop, Rq as overlayVariants, W7 as useApiMonthlyPlanPrice, iB as useCarousel, sB as useCheckGroup, Nhe as useCodeInput, aB as useControlledState, uB as useDragToScroll, m3 as useFileUploader, fB as useFocusKeyNav, BV as useFuse, HV as useImageLoadStatus, GV as useIsClient, KV as useLazyLoadVideo, qV as usePasteFilesHandler, L7 as usePriceCountryCurrencyDisplayName, JV as useResizeObserver, YV as useWindowDragEvents, Eh as withTooltip };
|
|
60639
60639
|
|
|
60640
60640
|
//# sourceMappingURL=index.mjs.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@photoroom/ui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.551",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Photoroom design system components",
|
|
6
6
|
"sideEffects": [
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@img-comparison-slider/react": "8.0.2",
|
|
39
39
|
"@lottiefiles/react-lottie-player": "3.6.0",
|
|
40
|
-
"@photoroom/icons": "0.1.
|
|
40
|
+
"@photoroom/icons": "0.1.39",
|
|
41
41
|
"@radix-ui/react-accordion": "1.2.20",
|
|
42
42
|
"@radix-ui/react-avatar": "1.2.6",
|
|
43
43
|
"@radix-ui/react-checkbox": "1.3.11",
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { VariantProps } from "class-variance-authority";
|
|
2
|
-
declare const clearButtonCva: (props?: ({
|
|
3
|
-
size?: "small" | "medium" | null | undefined;
|
|
4
|
-
variant?: "secondary" | "on-dark" | "secondary-on-dark" | null | undefined;
|
|
5
|
-
disabled?: boolean | null | undefined;
|
|
6
|
-
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
7
|
-
type ClearButtonCvaProps = VariantProps<typeof clearButtonCva>;
|
|
8
|
-
export type ClearButtonProps = React.ComponentProps<"button"> & ClearButtonCvaProps;
|
|
9
|
-
/**
|
|
10
|
-
* Clear Button
|
|
11
|
-
*
|
|
12
|
-
* https://www.figma.com/file/cHgANa7dtzDDGXk7dKuAOQ/Design-system?type=design&node-id=6542-12931&mode=design&t=w7j1FGO3ze9ksgKz-4
|
|
13
|
-
*/
|
|
14
|
-
export declare const ClearButton: {
|
|
15
|
-
({ size, variant, onClick, className, ref, ...props }: ClearButtonProps): import("react").JSX.Element;
|
|
16
|
-
displayName: string;
|
|
17
|
-
};
|
|
18
|
-
export {};
|
|
19
|
-
//# sourceMappingURL=ClearButton.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ClearButton.figma.d.ts","sourceRoot":"","sources":["../../../../src/components/action/ClearButton/ClearButton.figma.tsx"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/action/ClearButton/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC"}
|