export declare const buttonsMdxTemplate = "---\ntitle: \"Buttons\"\ndescription: \"A flexible action component supporting variants, sizes, icons, and links.\"\ndate: \"2026-02-19\"\ncategory: \"Components\"\ncategoryOrder: 1\norder: 11\n---\n# Buttons\n\nA flexible action component supporting variants, sizes, icons, and links.\n\nButtons help users initiate actions or navigate to other pages. Use variants to convey emphasis, size for hierarchy, and icons to add clarity.\n\n## Button Usage\n\nYou can use the Button component directly within your MDX files without any import. The following examples show basic usage:\n\n```html\n\n\n\n```\n\n\n\n\n\n### Sizes\n\n```html\n\n\n```\n\n\n\n\n### Outline\n\n```html\n\n```\n\n\n\n### Full width\n\n```html\n\n```\n\n\n\n### With icon\n\n```html\n\n\n```\n\n\n\n\n### As a link\n\nButtons can render as links when you provide an `href`.\n\n```html\n\n```\n\n\n\n## Properties\n\n\n The content of the button.\n\n\n\n Controls visual emphasis.\n\n\n- **primary**\n- **secondary**\n- **tertiary**\n\n\n Controls the size of the button.\n\n\n- **default**\n- **big**\n\n\n When true, renders the outlined style of the selected variant.\n\n\n\n When true, the button expands to the full width of its container.\n\n\n\n Optional icon to display inside the button.\n\n\n- [**Lucide icon**](https://lucide.dev/icons) name or icon node\n\n\n The position of the icon relative to the text.\n\n\n- **left**\n- **right**\n\n\n When provided, the button renders as a link (``), enabling navigation.\n";