redhare-demo/components/product/OutOfStock.jsx

15 lines
625 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

export default function OutOfStock() {
return (
<section className="lg:py-2 lg:bg-gray-100 mx-3 p-1.5 rounded bg-gray-50/50 my-5 lg:my-0 lg:rounded-lg">
<div className="flex items-center justify-between gap-x-2">
<div className="h-[3px] bg-gray-300 flex-1" />
<h4 className="text-base font-bold text-gray-500">库存不足</h4>
<div className="h-[3px] bg-gray-300 flex-1" />
</div>
<p className="px-3 text-sm text-gray-700">
此商品目前不可用库存不足您可以拨打我们电话在其库存存在后立即通知您
</p>
</section>
)
}