Skip to content

Commit

Permalink
Auto-format JSDocs
Browse files Browse the repository at this point in the history
  • Loading branch information
ciampo committed Jun 17, 2021
1 parent 7695b97 commit 5705bfc
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/components/src/card/card-body/component.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { useCardBody } from './hook';

/**
* @param {import('../../ui/context').PolymorphicComponentProps<import('../types').BodyProps, 'div'>} props
* @param {import('react').Ref<any>} forwardedRef
* @param {import('react').Ref<any>} forwardedRef
*/
function CardBody( props, forwardedRef ) {
const { isScrollable, ...otherProps } = useCardBody( props );
Expand Down
2 changes: 1 addition & 1 deletion packages/components/src/card/card-divider/component.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { useCardDivider } from './hook';

/**
* @param {import('../../ui/context').PolymorphicComponentProps<import('../../divider').DividerProps, 'hr'>} props
* @param {import('react').Ref<any>} forwardedRef
* @param {import('react').Ref<any>} forwardedRef
*/
function CardDivider( props, forwardedRef ) {
const dividerProps = useCardDivider( props );
Expand Down
2 changes: 1 addition & 1 deletion packages/components/src/card/card-footer/component.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { useCardFooter } from './hook';

/**
* @param {import('../../ui/context').PolymorphicComponentProps<import('../types').FooterProps, 'div'>} props
* @param {import('react').Ref<any>} forwardedRef
* @param {import('react').Ref<any>} forwardedRef
*/
function CardFooter( props, forwardedRef ) {
const footerProps = useCardFooter( props );
Expand Down
2 changes: 1 addition & 1 deletion packages/components/src/card/card-header/component.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { useCardHeader } from './hook';

/**
* @param {import('../../ui/context').PolymorphicComponentProps<import('../types').HeaderProps, 'div'>} props
* @param {import('react').Ref<any>} forwardedRef
* @param {import('react').Ref<any>} forwardedRef
*/
function CardHeader( props, forwardedRef ) {
const headerProps = useCardHeader( props );
Expand Down
2 changes: 1 addition & 1 deletion packages/components/src/card/card/component.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import CONFIG from '../../utils/config-values';

/**
* @param {import('../../ui/context').PolymorphicComponentProps<import('../types').Props, 'div'>} props
* @param {import('react').Ref<any>} forwardedRef
* @param {import('react').Ref<any>} forwardedRef
*/
function Card( props, forwardedRef ) {
const {
Expand Down

0 comments on commit 5705bfc

Please sign in to comment.