mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
f065a7a909
GitOrigin-RevId: fbb23b32c47edbe5a22badc627318accbd09e82a
50 lines
817 B
JavaScript
50 lines
817 B
JavaScript
import Icon from '../js/shared/components/icon'
|
|
|
|
export const Type = args => {
|
|
return (
|
|
<>
|
|
<Icon {...args} />
|
|
<div>
|
|
<a
|
|
href="https://fontawesome.com/v4.7.0/icons/"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
Font Awesome icons
|
|
</a>
|
|
</div>
|
|
</>
|
|
)
|
|
}
|
|
Type.args = {
|
|
type: 'tasks',
|
|
}
|
|
|
|
export const Spinner = args => {
|
|
return <Icon {...args} />
|
|
}
|
|
Spinner.args = {
|
|
type: 'spinner',
|
|
spin: true,
|
|
}
|
|
|
|
export const FixedWidth = args => {
|
|
return <Icon {...args} />
|
|
}
|
|
FixedWidth.args = {
|
|
type: 'tasks',
|
|
fw: true,
|
|
}
|
|
|
|
export const AccessibilityLabel = args => {
|
|
return <Icon {...args} />
|
|
}
|
|
AccessibilityLabel.args = {
|
|
type: 'check',
|
|
accessibilityLabel: 'Check',
|
|
}
|
|
|
|
export default {
|
|
title: 'Icon',
|
|
component: Icon,
|
|
}
|