mirror of
https://gh.wpcy.net/https://github.com/elementor/hello-theme.git
synced 2026-05-01 15:12:20 +08:00
14 lines
391 B
JavaScript
14 lines
391 B
JavaScript
import Stack from '@elementor/ui/Stack';
|
|
import CheckedCircleIcon from '@elementor/icons/CheckedCircleIcon';
|
|
import Typography from '@elementor/ui/Typography';
|
|
|
|
export const Feature = ( { text } ) => {
|
|
return (
|
|
<Stack direction="row" gap={ 1 } alignItems="center">
|
|
<CheckedCircleIcon color="promotion" />
|
|
<Typography variant="body2">
|
|
{ text }
|
|
</Typography>
|
|
</Stack>
|
|
);
|
|
};
|