import React from "react";
import Box from "./box";
import Text from "./text";
export function DetailItemContainer({ children, border, ...props }) {
return (
{border && (
)}
1
İSİM
{children}
);
}
export function DetailItemTitle({ children, ...props }) {
return {children};
}
export function DetailItemSummary({ children, ...props }) {
return (
{children}
);
}