Skip to content

Commit

Permalink
chore: Export fieldset
Browse files Browse the repository at this point in the history
  • Loading branch information
d-beezee committed Oct 14, 2024
1 parent 21a50c7 commit d6b23f5
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/stories/forms/field/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import {
Field as ZendeskField,
Fieldset as ZendeskFieldset,
Hint as ZendeskHint,
} from "@zendeskgarden/react-forms";
import styled from "styled-components";
Expand All @@ -12,4 +13,8 @@ const UgField = styled(ZendeskField)``;
**/
const Field = (props: FieldArgs) => <UgField {...props} />;

export { Field as FormField, ZendeskHint as FormHint };
export {
ZendeskFieldset as Fieldset,
Field as FormField,
ZendeskHint as FormHint,
};

0 comments on commit d6b23f5

Please sign in to comment.