-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Expand file tree
/
Copy pathhook.js
More file actions
40 lines (35 loc) · 811 Bytes
/
hook.js
File metadata and controls
40 lines (35 loc) · 811 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/**
* WordPress dependencies
*/
import { useMemo } from '@wordpress/element';
/**
* Internal dependencies
*/
import { useContextSystem } from '../../ui/context';
import * as styles from '../styles';
import { useCx } from '../../utils/hooks/use-cx';
/**
* @param {import('../../ui/context').WordPressComponentProps<import('../../divider').DividerProps, 'hr', false>} props
*/
export function useCardDivider( props ) {
const { className, ...otherProps } = useContextSystem(
props,
'CardDivider'
);
const cx = useCx();
const classes = useMemo(
() =>
cx(
styles.Divider,
styles.borderColor,
// This classname is added for legacy compatibility reasons.
'components-card__divider',
className
),
[ className ]
);
return {
...otherProps,
className: classes,
};
}