Summary: Migrated IconButton.js to IconButton.tsx Reviewed By: danielbuechele Differential Revision: D17132224 fbshipit-source-id: d4f14050385c7c25900e9a9d01f3b9a0dcff3a31
64 lines
1.4 KiB
TypeScript
64 lines
1.4 KiB
TypeScript
/**
|
|
* Copyright 2018-present Facebook.
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
* @format
|
|
*/
|
|
|
|
import {Glyph, styled, keyframes, IconSize} from 'flipper';
|
|
import React from 'react';
|
|
|
|
const shrinkAnimation = keyframes({
|
|
'0%': {
|
|
transform: 'scale(1);',
|
|
},
|
|
'100%': {
|
|
transform: 'scale(.9)',
|
|
},
|
|
});
|
|
|
|
type Props = {
|
|
icon: string;
|
|
outline?: boolean;
|
|
onClick?: () => void;
|
|
color?: string;
|
|
size: IconSize;
|
|
};
|
|
|
|
const RippleEffect = styled('div')({
|
|
padding: 5,
|
|
borderRadius: 100,
|
|
backgroundPosition: 'center',
|
|
transition: 'background 0.5s',
|
|
':hover': {
|
|
background:
|
|
'rgba(155, 155, 155, 0.2) radial-gradient(circle, transparent 1%, rgba(155, 155, 155, 0.2) 1%) center/15000%',
|
|
},
|
|
':active': {
|
|
backgroundColor: 'rgba(201, 200, 200, 0.5)',
|
|
backgroundSize: '100%',
|
|
transition: 'background 0s',
|
|
},
|
|
});
|
|
|
|
const IconButton = styled('div')({
|
|
':active': {
|
|
animation: `${shrinkAnimation} .25s ease forwards`,
|
|
},
|
|
});
|
|
|
|
export default function(props: Props) {
|
|
return (
|
|
<RippleEffect>
|
|
<IconButton className="icon-button" onClick={props.onClick}>
|
|
<Glyph
|
|
name={props.icon}
|
|
size={props.size}
|
|
color={props.color}
|
|
variant={props.outline ? 'outline' : 'filled'}
|
|
/>
|
|
</IconButton>
|
|
</RippleEffect>
|
|
);
|
|
}
|