UNPKG

ar-design

Version:

AR Design is a (react | nextjs) ui library.

25 lines (24 loc) 528 B
import { IChildren } from "../../../libs/types/IGlobalProps"; interface IProps extends IChildren { /** * Kart başlığı. * * Örneğin; * * ```jsx * <Card title="Kullanıcı Bilgileri" /> * ``` */ title?: string; /** * Kartın sağ üst köşesinde gösterilecek aksiyonlar (buton, menü vb.). * * Örneğin; * * ```jsx * <Card actions={<button>Düzenle</button>} /> * ``` */ actions?: React.JSX.Element; } export default IProps;