/**
* Default icon button with a home icon.
*/
export const Default: Story = {
args: {},
}
/**
* Icon button with different variants.
*/
export const Variants: Story = {
render: () => (
),
}
/**
* Icon button with different sizes.
*/
export const Sizes: Story = {
render: () => (
),
}
/**
* Icon button with different colors.
*/
export const Colors: Story = {
render: () => (
),
}
/**
* Icon button with different border radius options.
*/
export const Radius: Story = {
render: () => (
),
}
/**
* Icon button in disabled state.
*/
export const Disabled: Story = {
render: () => (
),
}
/**
* Common icon button examples for different use cases.
*/
export const CommonIcons: Story = {
render: () => (
),
}
/**
* Icon button with high contrast for better accessibility.
*/
export const HighContrast: Story = {
render: () => (
),
}
/**
* Icon button with different states and interactions.
*/
export const Interactive: Story = {
render: () => (
alert("Home button clicked!")}>
alert("Settings button clicked!")}>
),
}